{!! Form::open(['url' => action('AccountController@postFundTransfer'), 'method' => 'post', 'id' => 'fund_transfer_form' ]) !!}

@lang( 'account.fund_transfer' )

@lang('account.selected_account'): {{$from_account->name}} {!! Form::hidden('from_account', $from_account->id) !!}
{!! Form::label('to_account', __( 'account.transfer_to' ) .":*") !!} {!! Form::select('to_account', $to_accounts, null, ['class' => 'form-control', 'required' ]); !!}
{!! Form::label('amount', __( 'sale.amount' ) .":*") !!} {!! Form::text('amount', 0, ['class' => 'form-control input_number', 'required','placeholder' => __( 'sale.amount' ) ]); !!}
{!! Form::label('operation_date', __( 'messages.date' ) .":*") !!}
{!! Form::text('operation_date', 0, ['class' => 'form-control', 'required','placeholder' => __( 'messages.date' ) ]); !!}
{!! Form::label('note', __( 'brand.note' )) !!} {!! Form::textarea('note', null, ['class' => 'form-control', 'placeholder' => __( 'brand.note' ), 'rows' => 4]); !!}
{!! Form::close() !!}