@extends('layouts.new_theme') @section('content')

{{ __('Confirm Order') }}

{{-- --}}
@include('common.demo') @include('common.errors')

{{ __('Confirm Order') }}


{{ __('Billed To') }}:
@if ($address != null) {{ $address->name }}
{{ $address->address_1 }}
{{ $address->city }}, {{ $address->postal_code }}
{{ $address->states->name }}, {{ $address->countries->name }} @endif
{{ __('Shipped To') }}:
{{ $user->first_name }} {{ $user->last_name }}
{{ $user->address_1 }}
{{ $user->city }}, {{ $user->postal_code }}
{{ $user->states->name }}, {{ $user->countries->name }}
{{ __('Order Date') }}:
{{ $order_date }}

{{ __('Order Summary') }}

{{ __('Price is inclusive of taxes') }}.

# {{ __('Plan') }} {{ __('Periode') }} {{ __('Price') }} {{ __('Totals') }}
1 {{ __($plan->name) }} {{ __($pricing->term) }} {{ __($pricing->period) }} {{ $pricing->currencies->prefix }}{{ number_format($pricing->price, 2) }} {{ $pricing->currencies->prefix }}{{ number_format($pricing->price, 2) }}
@if ($pricing->price > 0)
@csrf
@if ($is_coupon == 1)
{{ 'Coupon code' }} {{ $request_coupon }} {{ 'applied successfully' }}
@elseif($is_coupon === 0 )
{{ 'Coupon code' }} {{ $request_coupon }} {{ 'not a valid coupon code' }}
@endif @error('coupon_code')
{{ $message }}
@enderror
@endif
@csrf
@if ($pricing->price != 0.0)
{{ __('Payment Method') }}

{{ __('The payment method that we provide is to make it easier') }}
{{ __('for you to pay invoices') }}.

{{ __('Subtotal') }}
{{ $pricing->currencies->prefix }}{{ number_format($pricing->price, 2) }}
{{ __('Offer applied') }}
{{ $pricing->currencies->prefix }}{{ number_format($pricing->price - $price, 2) }}
{{ __('Coupon Dicount') }}
{{ $pricing->currencies->prefix }}{{ number_format($discount_amount, 2) }}

{{ __('Total') }}
{{ $pricing->currencies->prefix }}{{ number_format($price - $discount_amount, 2) }}
@endif
@if (env('APP_ENV') != 'demo')
{{ __('Cancel') }}
@endif

@endsection