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

How to Send Payment To Our Account?

Step 1:

Copy Reference No. {{$deposit->code}} Then Send $ {{$deposit->amount}} to our following {{$gateway->name}} account.


Our {{$gateway->name}} Account

{{$gateway->account}}


Step 2:

Copy TrX ID & Paste that into the form below. We can verify your payment faster if you wrote payment account info also.

Add Funds to Your Account

@if (session()->has('message'))
{{ session()->get('title')}}..!
{{ session()->get('message')}}
@endif

Your Selected Gateway


User profile picture

{{$gateway->name}}

Deposit Summary

Cancel Deposit

Payment Send? Fill Info Here


@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