{{ __('messages.department.edit_department') }}
{{ Form::open(['id' => 'editForm', 'files' => true]) }}
{{ Form::hidden('department_id', null, ['id' => 'departmentId']) }}
{{ Form::label('name', __('messages.department.name').':') }}* {{ Form::text('name', '', ['id' => 'edit_name', 'class' => 'form-control', 'required']) }}
{{ Form::label('color', __('messages.common.color').':') }}
{{ Form::text('color', '', ['id' => 'edit_color', 'hidden', 'class' => 'form-control color']) }}
{{ Form::label('description', __('messages.common.description').':') }} {{ Form::textarea('description', null, ['class' => 'form-control', 'id' => 'editDescription']) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit', 'class' => 'btn btn-primary', 'id' => 'btnEditSave', 'data-loading-text' => " Processing..."]) }}
{{ Form::close() }}