{!! html()->form('PUT', route('academic.academic_years.update', [$academic_years->id]))->id('modal_form')->open() !!}

{{ __('academic.add_academic_year') }}

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