@extends('layouts.user', ['header' => true, 'nav' => true, 'demo' => true]) @section('content')
@if ($selected_plan == null)

{{ __('No Plan Found') }}

{{ __('Back') }}

@else

{{ __('Upgrade/Renewal Plan') }}

@if ($config[25]->config_value > 0) @endif
{{ __('Description') }} {{ __('Price') }}
{{ __($selected_plan->plan_name) }} - {{ __($selected_plan->validity) }} {{ __('Days') }}
{{ $currency->symbol }}{{ $selected_plan->plan_price == '0' ? 0 : number_format($selected_plan->plan_price,2) }}
{{ __($config[24]->config_value) }} ({{ $config[25]->config_value }}%)
{{ $currency->symbol }}{{ number_format((int)$selected_plan->plan_price * (int)$config[25]->config_value / 100, 2) }}
{{ __('Total Payable Amount') }} {{ $currency->symbol }}{{ number_format($total, 2) }}
@csrf

{{ __('Billing Details') }}

{{ __('Payment method') }}

@foreach ($gateways as $gateway)
@endforeach
@endif
@include('user.includes.footer')
@endsection