@extends('layouts.portal') @section('title', 'Continue Payment') @section('portal_title', 'Continue Payment') @section('portal_subtitle', 'Review your selected investment plan and submit your payment request.') @section('portal_content') @php $walletBalance = (float) ($wallet['balance'] ?? 0); $dailyRate = $selectedPlan ? portalProfitRate($selectedPlan['profit']) : 0; $minimumDailyReturn = $selectedPlan ? portalMoneyAmount($selectedPlan['minimum']) * $dailyRate : 0; $maximumDailyReturn = $selectedPlan ? portalMoneyAmount($selectedPlan['maximum']) * $dailyRate : 0; $cryptoWallets = [ 'Bitcoin address' => 'bc1qgexfnlm6pzzhjyp3eumjsd7m7hc3trrf7yv0ja', 'USDT (TRC20)' => 'F1YVZb4rDpEvdmrWNoBjMqgbsr5rDuX5v5tKEW3oTaDo', 'Ethereum' => '0x4c032Cf0299a056082570613626A394800864a0f', ]; @endphp

Payment Step

{{ $selectedPlan['name'] ?? 'Select an Investment Plan' }}

Review your selected plan, enter your investment amount, and continue with your payment request.

Back to Plans
@if (! $selectedPlan)
No plan was selected. Please return to the portal and choose an investment plan. Choose a plan
@else

Plan Summary

@foreach ([ 'Minimum Investment' => $selectedPlan['minimum'], 'Maximum Investment' => $selectedPlan['maximum'], 'Daily Profit' => $selectedPlan['profit'], 'Daily Return Range' => '$' . number_format($minimumDailyReturn, 2) . ($maximumDailyReturn > 0 ? ' - $' . number_format($maximumDailyReturn, 2) : ' and above'), 'Payout / Rollover Period' => $selectedPlan['period'], ] as $label => $value)
{{ $label }} {{ $value }}
@endforeach

Wallet Balance

${{ number_format($walletBalance, 2) }}

Deposit to wallet

Payment Information

@csrf
@error('amount')

{{ $message }}

@enderror

Daily Profit Rate

{{ $selectedPlan['profit'] }}

You Get Every Day

$0.00

30-Day Estimate

$0.00

Choose Payment Type
@error('payment_source')

{{ $message }}

@enderror
@error('payment_method')

{{ $message }}

@enderror

Crypto Wallets

@foreach ($cryptoWallets as $label => $address)

{{ $label }}

{{ $address }}

@endforeach

Add your transaction hash or payment note below after sending the deposit.

@error('note')

{{ $message }}

@enderror
@endif @endsection @push('scripts') @endpush