{!! Form::open(['url' => action('HrmTransactionController@store'), 'method' => 'post', 'id' => 'hrm_transactions_add_form' ]) !!}

Add Banking Category

{!! Form::label('e_id', __( 'Employee ID' ) . ':*') !!} {!! Form::select('e_id',$hrmt, null, ['class' => 'form-control', 'required', 'placeholder' => __( 'Employee ID' )]); !!}
{!! Form::label('salary', __( 'Salary' ) . ':*') !!}
{!! Form::label('type', __( 'Type' ) . ':') !!} {!! Form::select('type', ['salary' => 'Salary', 'bonus' => 'Bonus', 'others' => 'Others'],null, ['class' => 'form-control','required', 'placeholder' => __( 'Type' )]); !!}
{!! Form::label('amount', __( 'Amount' ) . ':') !!} {!! Form::text('amount', null, ['class' => 'form-control','required', 'placeholder' => __( 'Amount' )]); !!}
{!! Form::close() !!}