{{ __('messages.client.new_client') }}
{{ Form::open(['id' => 'addNewClientForm']) }}
{{ Form::label('name', __('messages.client.name').':') }}* {{ Form::text('name', null, ['id' => 'clientName', 'class' => 'form-control', 'required','tabindex' => '1']) }}
{{ Form::label('department_id', __('messages.client.department').':') }}*
{{ Form::select('department_id', $departments, null, ['id' => 'department_id', 'class' => 'form-control', 'required','placeholder'=>'Select Department','tabindex' => '2']) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit', 'class' => 'btn btn-primary', 'id' => 'btnClientSave', 'data-loading-text' => " Processing..." , 'tabindex' => '3']) }}
{{ Form::close() }}