{!! Form::open(['url' => action('AccountController@postWithDraw'), 'method' => 'post', 'id' => 'withdraw_form']) !!}
@lang('account.selected_account'):
{{ $account->name }}
{!! Form::hidden('account_id', $account->id) !!}
{!! Form::label('amount', __('sale.amount') . ':*') !!}
{!! Form::text('amount', 0, [
'class' => 'form-control input_number',
'required',
'placeholder' => __('sale.amount'),
]) !!}
{!! Form::label('from_account', 'Withdraw To:') !!}
{!! Form::label('note', __('brand.note')) !!}
{!! Form::textarea('note', null, ['class' => 'form-control', 'placeholder' => __('brand.note'), 'rows' => 4]) !!}