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

Create HRMS Department

{!! Form::open(['route'=>array('hrms-department.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{{$errors->first('department_name')}}
{!! Form::select("employee_id", [''=>'Select Department Head']+$employee, old("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