{{ Form::open(['route' => 'biller.hrms.attendance_store', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post','files' => true, 'id' => 'create-hrm']) }}
@if(isset($payroll))
@endif
{{ Form::hidden('payer_id', 0, ['id' => 'payer_id']) }}
{{ Form::hidden('relation_id', 0, ['id' => 'relation_id']) }}
{{ Form::close() }}
{{ Form::label( 'payer', trans('hrms.employee'),['class' => 'col-lg-12 control-label']) }}
{{ Form::text('payer', null, ['class' => 'form-control round', 'placeholder' => trans('hrms.employee'),'id'=>'payer','autocomplete'=>'off']) }}
{{ Form::label( 'note', trans('general.note'),['class' => 'col-6 control-label']) }}
{{ Form::text('note', null, ['class' => 'form-control round', 'placeholder' => trans('general.note'),'autocomplete'=>'off']) }}
{{trans('hrms.attendance_new')}}
{{ link_to_route('biller.hrms.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }}
{{ Form::submit(trans('buttons.general.crud.create'), ['class' => 'btn btn-success btn-md','id'=>'e_btn']) }}