@extends('web.pages.my-account.funds.main') @section('funds')
@csrf
@if($errors->has('amount')) {{ $errors->first('amount') }} @endif

{{ trans('text.total-balance') }}: {{ $user->wallet_formated }}

@if(session()->has('error'))

{{ session('error') }}

@endif @if(session()->has('success'))

{{ session('success') }}

@endif

({{ $settings->zain_cash_fees }}% processing fees will be charged to the added amount )

@endsection