{{ Form::open([
'class' => 'form-horizontal',
'files' => true,
'route' => 'savePayrollPaymentData',
'method' => 'POST',
'enctype' => 'multipart/form-data',
#'onsubmit' => 'return validateForm()',
]) }}
@if ($errors->has('expense_head_id'))
{{ $errors->first('expense_head_id') }}
@endif
@if ($errors->has('payment_mode'))
{{ $errors->first('payment_mode') }}
@endif
@if ($errors->has('bank_id'))
{{ $errors->first('bank_id') }}
@endif
{{ Form::close() }}