@extends('frontend.layouts.app') @section('content')
{{ $pageTitle }}
{{ __('Home') }}
{{ $pageTitle }}
@if ($message = Session::get('error'))
×
{{ __('Error!') }}
{{ $message }}
@endif
@csrf
{{ __('Billing Address') }}
{{ __('First Name') }}
*
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
{{ __('Last Name') }}
*
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
{{ __('Email Address') }}
*
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ __('Address') }}
*
@if ($errors->has('street_address'))
{{ $errors->first('street_address') }}
@endif
{{ __('Country') }}
@if ($user->country_id && $user->country)
@else
{{ __('Select Country') }}
@foreach ($countries as $country)
id ? 'selected' : '' }} @else {{ $user->country_id == $country->id ? 'selected' : '' }} @endif> {{ $country->country_name }}
@endforeach
@endif @if ($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
{{ __('State') }}
@if ($user->state_id && $user->state)
@else
{{ __('Select State') }}
@if (old('country_id')) @foreach ($states as $state)
id ? 'selected' : '' }}> {{ $state->name }}
@endforeach @else @if ($user->country) @foreach ($user->country->states as $selected_state)
state_id == $selected_state->id ? 'selected' : '' }}> {{ $selected_state->name }}
@endforeach @endif @endif
@endif @if ($errors->has('state_id'))
{{ $errors->first('state_id') }}
@endif
{{ __('City') }}
@if ($user->city_id && $user->city)
@else
{{ __('Select City') }}
@if (old('state_id')) @foreach ($cities as $city)
id ? 'selected' : '' }}> {{ $city->name }}
@endforeach @else @if ($user->state) @foreach ($user->state->cities as $selected_city)
city_id == $selected_city->id ? 'selected' : '' }}> {{ $selected_city->name }}
@endforeach @endif @endif
@endif @if ($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif
{{ __('Zip Code') }}
{{ __('Phone') }}
*
{{ __('Payment Method') }}
@if (get_option('paypal_status') == 1)
PayPal
{{ __('You will be redirected to the PayPal website after submitting your order') }}
@endif @if (get_option('bank_status') == 1)
{{ __('Bank') }}
{{ __('Name') }}
{{ __('Select One') }}
@foreach ($banks as $bank)
{{ $bank->name }}
@endforeach
{{ __('Account Number') }}
{{ __('Deposit By') }}
{{ __('Deposit Slip') }}
@endif @if (get_option('stripe_status') == 1)
Stripe
{{ __('You will be redirected to the stripe website after submitting your order') }}
@endif @if (get_option('mollie_status') == 1)
Mollie
@endif @if (get_option('im_status') == 1)
Instamojo
@endif @if (get_option('razorpay_status') == 1)
Razorpay
@endif @if (get_option('paystack_status') == 1)
Paystack
@endif @if (get_option('sslcommerz_status') == 1)
SSLCOMMERZ
@endif @if (get_option('mercadopago_status') == 1)
MERCADO PAGO
@endif @if (get_option('flutterwave_status') == 1)
Flutterwave
@endif @if (get_option('coinbase_status') == 1)
Coinbase
@endif @if (get_option('zitopay_status') == 1)
Zitopay
@endif @if (get_option('iyzipay_status') == 1)
Iyzico
@endif @if (get_option('bitpay_status') == 1)
Bitpay
@endif @if (get_option('braintree_status') == 1)
Braintree
@endif @foreach(newGateway() as $index => $gateway) @if (get_option("{$gateway}_status") == 1)
{{ ucfirst($gateway) }}
@endif @endforeach
{{ __('We protect your payment information using encryption to provide bank-level security') }}
{{ __('Order Review') }}
{{ $package->title }}
{{ $subscription_type }}
{{ $price }}
{{ __('Billing Summary') }}
{{ __('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
Please check to acknowledge our
Privacy & Terms Policy
@if (env('APP_DEMO') == 'active')
{{ __('Pay') }}
@else
{{ __('Pay') }} {{ @$sslcommerz_grand_total_with_conversion_rate }} {{ get_option('sslcommerz_currency') }}
{{ __('Pay') }}
@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