{{ $customer->name }}
{{ translate('User ID') }}: # {{ $customer->id }}
{{ translate('Phone') }}: # {{ $customer->phone }}
{{ translate('Last login') }}: {{ $customer->last_login }}
{{ translate('Balance') }}
:
{{ $customer->balance }} {{ currency_sympol()['name'] }}
{!! Form::open(['method' => 'post', 'action' => 'Admin\WalletController@store', 'files' => true, 'id' => 'wallet_form']) !!}
{!! Form::Close() !!}
{!! Form::hidden('customer_id', $customer->id) !!}
{!! Form::text('payment_details', null, ['id' => 'payment_details', 'required' => 'required', 'class' => 'form-control', 'placeholder' => translate('Description')]) !!}
{!! Form::number('amount', null, ['id' => 'amount', 'required' => 'required', 'class' => 'form-control', 'placeholder' => translate('Amount')]) !!}