FMS
@include('partials.main-nav', ['active' => 'colleges'])
@include('partials.user-nav')
Edit College
Update the information for {{ $college->college_name_en }}
Back to Directory
@if($errors->any())
There were some errors with your submission
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf @method('PUT')
Basic Information
English Name
*
Arabic Name
*
Leadership Assignments
Dean
Select Dean...
@foreach($teachers as $teacher)
dean_id) == $teacher->id ? 'selected' : '' }}> {{ $teacher->teacher_name_ar ?: $teacher->teacher_name_en ?: 'Unknown Name' }}
@endforeach
Vice Dean
Select Vice Dean...
@foreach($teachers as $teacher)
vice_dean_id) == $teacher->id ? 'selected' : '' }}> {{ $teacher->teacher_name_ar ?: $teacher->teacher_name_en ?: 'Unknown Name' }}
@endforeach
Cancel
@can_do('Colleges', 'update')
Save Changes
@endcan_do