Select Basic Settings
@if (auth()->user()->hasRole('Super Admin'))
@endif
@component('components.widget', ['title' => __('academic.academic_teacher_settings')])
@endcomponent
{!! html()->label(__('academic.select_subject') . ':', 'subject_id[0]') !!}
{!! html()->select('subject_id[0]', $subjects)->class('form-control subject_id')->id('subject_id[0]')->required()->value(old('subject_id[0]')) !!}
{!! html()->label(__('academic.select_class_teacher') . ':', 'class_teacher_id') !!}
{!! html()->select('class_teacher_id', $employee_pluck)->class('form-control class_teacher_id')->id('class_teacher_id')->required()->attribute('disabled', true)->value(old('class_teacher_id')) !!}
@component('components.widget', ['title' => __('academic.common')])
@endcomponent
{!! html()->checkbox('status', true)->id('status')->class('input-icheck status') !!}
{!! html()->label('Status', 'status') !!}
@show_tooltip(__('core.tooltip_enable_user_active'))
{!! html()->label(__('core.note') . ':', 'note') !!}
{!! html()->textarea('note')->class('form-control')->id('note')->value(old('note', $shift->note ?? '')) !!}
{!! html()->button(__('core.submit'), 'submit')->class('btn btn-primary btn-big') !!}