{!! html()->form('PUT', action: route('exam.academic_exam_types.update', [$exam_type->id]))->id('modal_form')->open() !!}

{{ __('exam.edit_exam_type') }}

@if (auth()->user()->hasRole('Super Admin'))
{!! html()->label(__('common.business_id') . ':', 'business_id') !!} {!! html()->select('business_id', $business_list)->class('form-control')->id('business_id')->required()->value(old('business_id', $exam_type->business_id)) !!}
@endif
{!! html()->label(__('exam.exam_type') . ':', 'exam_type') !!} {!! html()->text('exam_type')->class('form-control')->id('exam_type')->required()->maxLength(100)->value(old('exam_type', $exam_type->exam_type ?? '')) !!}
{!! html()->label(__('core.note') . ':', 'note') !!} {!! html()->textarea('note')->class('form-control')->id('note')->value(old('note', $exam_type->note ?? '')) !!}
{!! html()->form()->close() !!}