@include('.frontend.template.base_dropdown_menu',[
'label' => $label ?? '任教學校名稱*',
'name' => $name ?? 'school_id',
'id' => $id ?? 'school_id',
'class' => $class ?? 'form-select',
'options' => $options ?? (new App\Services\School\SchoolService)->getAllCache(),
'option_value_field' => $option_value_field ?? 'id',
'option_name_field' => $option_name_field ?? 'name',
'default' => $default ?? null,
'readonly' => $readonly ?? false,
'style' => ''
])
@if (!empty($readonly))
@endif