@extends('../../master_layout/website_master') @section('custom_css') @endsection @section('title') {{env('APP_NAME')}} :: Wallet @endsection @section('heading')
Back

Add Fund

@php $breadcrumb = array( array('title'=> 'Wallet', 'url'=>route('wallet')), array('title'=> 'Add Fund', 'url'=>'', 'active'=>'1') ); @endphp @include('website_view.component.breadcrumb', compact("breadcrumb"))
@endsection @section('content')

Add Fund

@if (session('errors'))
@foreach($errors->all() as $message)
  • {{$message}}
  • @endforeach
    @endif @if (session('message'))
    @endif
    @if(isset($wallet->country_flag) && $wallet->country_flag !='' && file_exists(public_path('/uploads/flags/').'/'.$wallet->country_flag)) @endif

    {{ strtoupper($wallet->country_name) }}

    Wallet Balance

    {{ $wallet->wallet_balance }} {{ $wallet->currency_symbol }}

    Add funds to your wallet

    @csrf
    Amount should be greater than 0.

    Transaction Fee: 0.00 Total: 0.00

    @endsection @section('custom_js') @if(isset($payment_settings[config('global.payment.PayPal')]) && !empty($payment_settings[config('global.payment.PayPal')]))