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

{{ $pageTitle }}

@if ($message = Session::get('error')) @endif
@csrf
{{ __('Billing Address') }}
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('street_address')) {{ $errors->first('street_address') }} @endif
@if ($user->country_id && $user->country) @else @endif @if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
@if ($user->state_id && $user->state) @else @endif @if ($errors->has('state_id')) {{ $errors->first('state_id') }} @endif
@if ($user->city_id && $user->city) @else @endif @if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
{{ __('Payment Method') }}
@if (get_option('paypal_status') == 1)
@endif @if (get_option('bank_status') == 1)
@endif @if (get_option('stripe_status') == 1)
@endif @if (get_option('mollie_status') == 1)
@endif @if (get_option('im_status') == 1)
@endif @if (get_option('razorpay_status') == 1)
@endif @if (get_option('paystack_status') == 1)
@endif @if (get_option('sslcommerz_status') == 1)
@endif @if (get_option('mercadopago_status') == 1)
@endif @if (get_option('flutterwave_status') == 1)
@endif @if (get_option('coinbase_status') == 1)
@endif @if (get_option('zitopay_status') == 1)
@endif @if (get_option('iyzipay_status') == 1)
@endif @if (get_option('bitpay_status') == 1)
@endif @if (get_option('braintree_status') == 1)
@endif @foreach(newGateway() as $index => $gateway) @if (get_option("{$gateway}_status") == 1)
@endif @endforeach
{{ __('We protect your payment information using encryption to provide bank-level security') }}

Package
{{ $package->title }}

{{ $subscription_type }}

{{ $price }}

{{ __('Subtotal') }} @if (get_currency_placement() == 'after') {{ get_number_format($price) }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ get_number_format($price) }} @endif
{{ __('Platform Charge') }} @if (get_currency_placement() == 'after') {{ get_platform_charge($price) }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ get_platform_charge($price) }} @endif
{{ __('Grand Total') }} @if (get_currency_placement() == 'after') {{ get_number_format($price + get_platform_charge($price)) }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ get_number_format($price + get_platform_charge($price)) }} @endif
{{ __('Conversion Rate') }} 1 {{ get_currency_symbol() }} = ?
In
@if (env('APP_DEMO') == 'active')
@else
@endif
@php $razorpay_pay_amount = $razorpay_grand_total_with_conversion_rate * 100; $orderId = rand(); @endphp
@foreach(newGateway() as $index => $gateway) @endforeach @endsection @push('script') @if (get_option('sslcommerz_mode') == 'live') @else @endif @endpush