@extends('admin.layout.app') @section('title','Edit HRMS Department') @push('headerscript') @endpush @section('content')

Edit HRMS Department

{!! Form::open(['route'=>array('hrms-department.update', $department->id), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'put']) !!}
{{$errors->first('department_name')}}
{!! Form::select("employee_id", [''=>'Select Department Head']+$employee, $department->employee_id, ['class'=>'form-control select2' ,'id' => 'employee_id'] ) !!}
{{$errors->first('employee_id')}}
{{$errors->first('department_head_email')}}
{{$errors->first('department_head_user_id')}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush