{{ Form::label( 'first_name', trans('hrms.first_name'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('first_name', null, ['class' => 'form-control round', 'placeholder' => trans('hrms.first_name').'*','required'=>'required']) }}
{{ Form::label( 'last_name', trans('hrms.last_name'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('last_name', null, ['class' => 'form-control round', 'placeholder' => trans('hrms.last_name').'*','required'=>'required']) }}
{{ Form::label( 'email', trans('hrms.email'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('email', null, ['class' => 'form-control round', 'placeholder' => trans('hrms.email').'*','required'=>'required']) }}
{{ Form::label( 'password', trans('hrms.password'),['class' => 'col-lg-2 control-label']) }}
@if(@$hrms->id) {{ Form::text('password', '', ['class' => 'form-control round', 'placeholder' => trans('hrms.password').' (Abc@1234)','id'=>'u_password'.'*']) }} {{trans('hrms.blank_field')}} @else {{ Form::text('password', '', ['class' => 'form-control round', 'placeholder' => trans('hrms.password').' (Abc@1234)','id'=>'u_password'.'*','required'=>'required']) }} @endif
{{ Form::label( 'picture', trans('hrms.picture'),['class' => 'col-lg-2 control-label']) }}
{!! Form::file('picture', array('class'=>'input' )) !!} @if(@$hrms->id) {{trans('hrms.blank_field')}} @endif
{{ Form::label( 'signature', trans('hrms.signature'),['class' => 'col-lg-2 control-label']) }}
{!! Form::file('signature', array('class'=>'input' )) !!} @if(@$hrms->id) {{trans('hrms.blank_field')}} @endif
{{ Form::label( 'role', trans('hrms.role'),['class' => 'col-lg-2 control-label']) }}
@if(@$hrms->role['id'])
@foreach($permissions_all as $row)
@endforeach
@endif
{{ Form::label( 'contact', trans('hrms.phone'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('contact', @$hrms->profile['contact'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.phone')]) }}
{{ Form::label( 'company', trans('hrms.company'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('company', @$hrms->profile['address_1'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.company')]) }}
{{ Form::label( 'address', trans('hrms.address_1'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('address_1', @$hrms->profile['address_1'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.address_1')]) }}
{{ Form::label( 'city', trans('hrms.city'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('city', @$hrms->profile['city'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.city')]) }}
{{ Form::label( 'state', trans('hrms.state'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('state', @$hrms->profile['state'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.state')]) }}
{{ Form::label( 'country', trans('hrms.country'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('country', @$hrms->profile['country'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.country')]) }}
{{ Form::label( 'postal', trans('hrms.postal'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('postal', @$hrms->profile['postal'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.postal')]) }}
{{ Form::label( 'tax_id', trans('hrms.tax_id'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('tax_id', @$hrms->profile['tax_id'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.tax_id')]) }}
{{ Form::label( 'department', trans('departments.department'),['class' => 'col-lg-2 control-label']) }}
{{ Form::label( 'salary', trans('hrms.salary'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('salary', @$hrms->meta['salary'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.salary')]) }}
{{ Form::label( 'hra', trans('hrms.hra'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('hra', @$hrms->meta['hra'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.hra')]) }}
{{ Form::label( 'entry_time', trans('hrms.entry_time'),['class' => 'col control-label']) }}
{{ Form::time('entry_time', @$hrms->meta['entry_time'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.entry_time')]) }}
{{ Form::label( 'exit_time', trans('hrms.exit_time'),['class' => 'col control-label']) }}
{{ Form::time('exit_time', @$hrms->meta['exit_time'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.exit_time')]) }}
{{ Form::label( 'sales_commission', trans('hrms.sales_commission'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('commission', @$hrms->meta['commission'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.sales_commission')]) }}
@section('after-scripts') {{ Html::script('focus/js/jquery.password-validation.js') }} @endsection