@extends('layouts.app') @section('title', 'Add Fund') @section('main')

Add Funds

Top up your account balance

Current Balance

{{ $user->balance * $currency->rate }} {{ $currency->icon }}
@if (session("error"))
{{ session("error") }}
@endif @if (session("success"))
{{ session("success") }}
@endif
@csrf
@error('amount')

{{ $message }}

@enderror
@foreach ($gateways as $gateway) @endforeach
@error("gateway")

{{ $message }}

@enderror

Payment Summary

Deposit Amount 0.00 {{ $currency->icon }}
Gateway Fee (0%) 0.00 {{ $currency->icon }}
Total Amount 0.00 {{ $currency->icon }}

Balance after deposit

{{ $user->balance * $currency->rate }} {{ $currency->icon }}

Secure payment processing with 256-bit SSL encryption
@endsection