{{ __('messages.department.new_department') }}
{{ Form::open(['id' => 'addNewDepartment']) }}
{{ Form::label('name', __('messages.department.name').':') }}* {{ Form::text('name', '', ['id' => 'name', 'class' => 'form-control', 'required']) }}
{{ Form::hidden('color', '#3F51B5', ['id' => 'color', 'hidden', 'class' => 'form-control color']) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit', 'class' => 'btn btn-primary', 'id' => 'btnDepartmentSave', 'data-loading-text' => " Processing..."]) }}
{{ Form::close() }}