{!! Form::open(['route' => 'exams.post_report', 'method' => 'post']) !!}
{!! Form::close() !!}
@if (empty($session))
{!! Form::label('report_type', trans('Report Type'), ['class' => 'control-label']) !!}
{!! Form::select('report_type',examReportType(), null, array('required', 'class' => 'select2 form-control','placeholder'=>trans('Choose'))) !!}
@error('report_type')
{{ $message }}
@enderror
{!! Form::label('exam', trans('Exam'), ['class' => 'control-label']) !!}
{!! Form::select('exam',$exam, null, array('required', 'class' => 'select2 form-control','placeholder'=>trans('Choose'))) !!}
@error('exam')
{{ $message }}
@enderror
{!! Form::label('section', trans('Section'), ['class' => 'control-label']) !!}
{!! Form::select('section',$section, null, array('required', 'class' => 'select2 form-control', 'placeholder' => trans('Choose'))) !!}
@error('section')
{{ $message }}
@enderror
*@lang('Note')
: @lang('There has no session active now.') @lang('Please active an session first.')
@endif