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

Withdraw

@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('operation_date', __('messages.date') . ':*') !!}
{!! Form::text('operation_date', null, [ 'class' => 'form-control', 'required', 'placeholder' => __('messages.date'), 'id' => 'od_datetimepicker', ]) !!}
{!! Form::label('note', __('brand.note')) !!} {!! Form::textarea('note', null, ['class' => 'form-control', 'placeholder' => __('brand.note'), 'rows' => 4]) !!}
{!! Form::close() !!}