Edit Department
{!! Form::open(['id' => 'editForm', 'files' => true]) !!}
{!! Form::hidden('department_id', null, ['id' => 'departmentId']) !!}
{!! Form::label('name', 'Name') !!}* {!! Form::text('name', '', ['id' => 'edit_name', 'class' => 'form-control', 'required']) !!}
{!! Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-primary', 'id' => 'btnEditSave', 'data-loading-text' => " Processing..."]) !!}
{!! Form::close() !!}