{!! Form::open(['url' => action('HrmTransactionController@update', [$hrmt->id]), 'method' => 'PUT', 'id' => 'hrm_transactions_add_form' ]) !!}

Update HRM Transaction

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