@extends('layouts.student') @section('pageTitle',$pageTitle) @section('innerTitle',$pageTitle) @section('breadcrumb') @include('admin.partials.crumb',[ 'crumbs'=>[ route('student.dashboard')=>__lang('dashboard'), route('student.assignment.index')=>__lang('homework'), '#'=>__lang('submit') ]]) @endsection @section('content')
{{ __lang('instructions') }}

{!! clean($row->instruction) !!}

{{ __lang('answer') }}
@csrf @php if($row->type=='t' || $row->type=='b'): @endphp
{{ formLabel($form->get('content')) }} {{ formElement($form->get('content')) }}

{{ formElementErrors($form->get('content')) }}

@section('footer') @parent . @endsection @php endif; @endphp @php if($row->type == 'f' || $row->type=='b' ): @endphp @php if (isset($file)): @endphp
{{ __lang('current-file') }}: {{ $file }}
@php endif; @endphp
{{ formLabel($form->get('file_path')) }} {{ formElement($form->get('file_path')) }}

{{ formElementErrors($form->get('file_path')) }}

@php endif; @endphp
{{ formLabel($form->get('student_comment')) }} {{ formElement($form->get('student_comment')) }}

{{ formElementErrors($form->get('student_comment')) }}

{{ formLabel($form->get('submitted')) }} {{ formElement($form->get('submitted')) }}

{{ formElementErrors($form->get('submitted')) }}

@endsection @section('footer') @endsection