@extends('layouts.admin') @section('page-title','') @section('breadcrumb') @include('admin.partials.crumb',[ 'crumbs'=>$customCrumbs]) @endsection @section('content')
{{ __lang('Student Information') }}
{{ __lang('first-name') }} {{ $row->first_name }}
{{ __lang('last-name') }} {{ $row->last_name }}
{{ __lang('email') }} {{ $row->email }}
{{ __lang('telephone-number') }} {{ $row->mobile_number }}
{{ __lang('homework-details') }}
{{ __lang('title') }}
{{ $row->title }}
{{ __lang('instruction') }}
{!! $row->instruction !!}
{{ __lang('due-date') }}
{{ showDate('d/M/Y',$row->due_date) }}
{{ __lang('assignment-type') }}
@php switch($row->type){ case 't': echo __lang('text'); break; case 'f': echo __lang('file-upload'); break; case 'b': echo __lang('text-file-upload'); break; } @endphp
{{ __lang('passmark') }}
{{ $row->passmark }}%

{{ __lang('student-response') }}

@php if($row->type=='t' || $row->type=='b'): @endphp
{{ __lang('answer') }}
{!! clean($row->content) !!}
@php endif; @endphp @php if($row->type=='f' || $row->type=='b'): @endphp
{{ __lang('file') }}

{{ basename($row->file_path) }}

@php endif; @endphp
{{ __lang('additional-comment') }}

{{ $row->student_comment }}

{{ __lang('grade') }}

{{ __lang('grade-homework') }}
@csrf
{{ formLabel($form->get('admin_comment')) }} {{ formElement($form->get('admin_comment')) }}
{{ formLabel($form->get('grade')) }} {{ formElement($form->get('grade')) }}
{{ formLabel($form->get('editable')) }} {{ formElement($form->get('editable')) }}
{{ __lang('notify-student') }}
@endsection @section('footer') @endsection