@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
Review your selected plan, enter your investment amount, and continue with your payment request.
{{ $selectedPlan['name'] ?? 'Select an Investment Plan' }}