@extends ('focus.customers.layout.view') @section('customer_view')

{{ trans('payments.wallet_balance') }} {{amountFormat($customer['balance'])}}

{{ Form::open(['route' => 'biller.customers.wallet_post', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post', 'id' => 'wallet-customer']) }}
{{ Form::label( 'amount', trans('general.amount'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('amount', null, ['class' => 'form-control box-size', 'placeholder' => trans('general.amount'),'onkeypress'=>"return isNumber(event)"]) }}
{{ Form::submit(trans('general.add'), ['class' => 'btn ml-2 btn-primary btn-md']) }}
{{ Form::close() }}
@endsection @section('after-scripts') {{-- For DataTables --}} {{ Html::script(mix('js/dataTable.js')) }} @endsection