{!! html()->form('POST', route('exam.academic_exam_schedule.store'))->id('exam_schedule_form')->open() !!}
{{--
--}}
{!! html()->label(__('exam.exam_name') . ':', 'academic_exam_id')->class('form-label') !!}
{!! html()->select('academic_exam_id', $exams_list)->class('form-control')->id('academic_exam_id')->required()->value(old('academic_exam_id')) !!}
{!! html()->label(__('exam.start_date') . ': *', 'start_date')->class('form-label') !!}
{!! html()->date('start_date')->class('form-control date_input')->id('start_date')->value(old('start_date'))->attribute('data-toggle', 'datepicker') !!}
{!! html()->label(__('exam.end_date') . ': *', 'end_date')->class('form-label') !!}
{!! html()->date('end_date')->class('form-control date_input')->id('end_date')->value(old('end_date'))->attribute('data-toggle', 'datepicker') !!}
{!! html()->label(__('exam.subjects') . ':', 'subject_id')->class('form-label') !!}
{!! html()->select('subject_id[]', 'Please Select')->class('form-control subject_id select_subject_id ')->id('subject_id')->required()->value(old('subject_id')) !!}
{!! html()->label(__('exam.exam_type') . ':', 'exam_type_id')->class('form-label') !!}
{!! html()->select('exam_type_id[]', $exam_type_list)->class('form-control exam_type_id')->id('exam_type_id')->required()->value(old('exam_type_id'))->attribute('disabled') !!}
{!! html()->label(__('exam.exam_mark') . ':', 'exam_mark')->class('form-label') !!}
{!! html()->number('exam_mark[]')->class('form-control exam_mark')->id('exam_mark')->required()->value(old('exam_mark'))->attribute('disabled') !!}
{!! html()->label(__('exam.pass_mark') . ':', 'pass_mark')->class('form-label') !!}
{!! html()->number('pass_mark[]')->class('form-control pass_mark')->id('pass_mark')->required()->value(old('pass_mark'))->attribute('disabled') !!}
{{-- --}}
{!! html()->checkbox('is_publish', true)->id('is_publish')->class('input-icheck status') !!}
{!! html()->label('is_publish', 'is_publish')->class('form-label') !!}
{!! html()->checkbox('status', true)->id('status')->class('input-icheck status') !!}
{!! html()->label('Active', 'status')->class('form-label') !!}
{!! html()->label(__('core.note') . ':', 'note')->class('form-label') !!}
{!! html()->textarea('note')->class('form-control')->id('note')->value(old('note')) !!}