Thanh toán nạp ví

{!! Form::open(array('url' => url('order/'.$order->id.'/show'), 'method' => 'put', 'files'=> true,'id'=>'fvalidate')) !!}

{{ number_format($order->order_price - $order->gross_revenue) }}

{!! Form::label('payment_date', 'Ngày thanh toán', array('class' => ' required')) !!} {{ $errors->first('full_name', ':message') }}
{!! Form::label('payment_type', 'Số tiền', array('class' => ' required')) !!} {!! Form::select('payment_type',[1 => "Tiền mặt", 2 => 'Thẻ',4 => 'Chuyển khoản'], null, array('id' => 'phone','class' => 'form-control select2 payment-type', 'placeholder' => 'Hình thức thanh toán', 'required' => true)) !!}
{!! Form::text('gross_revenue', null, array('class' => 'form-control gross-revenue', "data-type"=>"currency", 'required' => true)) !!}

Thanh toán

Còn lại

{!! Form::label('description', 'Ghi chú', array('class' => ' required')) !!} Số dư ví không đủ (tối đa {{ number_format(@$order->customer->wallet) }})
{{ Form::close() }}