{!! Form::open(['url' => action('BankTransactionController@update',[$bank_transaction->id]), 'method' => 'PUT', 'id' => 'bank_transaction_add_form' ]) !!}

Update Transaction

{!! Form::label('u_id', __( 'User Name' ) . ':*') !!}
{!! Form::label('type', __( 'Type' ) . ':') !!}
{!! Form::label('balance', __( 'Balance' ) . ':') !!} {!! Form::text('balance', $bank_transaction->balance, ['class' => 'form-control', 'placeholder' => __( 'balance' )]); !!}
{!! Form::close() !!}