{!! Form::open(['url' => action([\App\Http\Controllers\AccountController::class, 'postDeposit']), 'method' => 'post', 'id' => 'deposit_form' ]) !!}
@lang('account.selected_account'):
{{$account->name}}
{!! Form::hidden('account_id', $account->id) !!}
{!! Form::label('account_id', __( 'lang_v1.deposit_to' ) .":") !!}
{!! Form::select('account_id', $from_accounts, $account->id, ['class' => 'form-control' ]); !!}
{!! Form::label('amount', __( 'sale.amount' ) .":*") !!}
{!! Form::text('amount', 0, ['class' => 'form-control input_number', 'required','placeholder' => __( 'sale.amount' ) ]); !!}
{!! Form::label('from_account', __( 'account.deposit_from' ) .":") !!}
{!! Form::select('from_account', $from_accounts, null, ['class' => 'form-control', 'placeholder' => __('messages.please_select') ]); !!}
{!! Form::label('note', __( 'brand.note' )) !!}
{!! Form::textarea('note', null, ['class' => 'form-control', 'placeholder' => __( 'brand.note' ), 'rows' => 4]); !!}