@extends('layouts.app') @section('content')

Add Funds to Your Account

@if (session()->has('message'))
{{ session()->get('title')}}..!
{{ session()->get('message')}}
@endif
@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Important Information

Keep In Mind! Gateway Fees
@if($gateways)
    @foreach($gateways as $gateway)
  • {{$gateway->name}} Fees: $ {{$gateway->fixed}} (Fixed) + {{$gateway->percent}}%
  • @endforeach
@endif

$ {{Auth::user()->balance}}

Current Balance

More info
@endsection