@extends('frontend.frontend-page-master') @section('site-title') {{__('Checkout')}} @endsection @section('page-title') {{__('Checkout')}} @endsection @section('style') @endsection @section('content') @include('backend.partials.message') @if(cart_total_items() > 0) @if($errors->any()) @foreach($errors->all() as $error) {{$error}} @endforeach @endif @include('backend.partials.message') @if(!auth()->check()) @endif @if(!auth()->check()) check()) style="display: none" @endif> {{__('Guest Order')}} @if(!auth()->check()) @csrf {{__('Login')}} {{__('Remember Me')}} {{__('Haven\'t any account?')}} {{__('Forgot Password?')}} @else {{__('Your Are Logged In As '. auth()->user()->name)}} @endif @if(!auth()->check()) {{__('Next Step')}} @endif @endif @csrf {{__('Billing Information')}} {{__('Name')}} {{__('Email')}} {{__('Phone')}} {{__('Country')}} {!! get_country_field('billing_country','billing_country','form-control') !!} {{__('Street Address')}} {{__('Town/City')}} {{__('State')}} {{__('Ship to a different location?')}} {{__('Shipping Information')}} {{__('Name')}} {{__('Email')}} {{__('Phone')}} {{__('Country')}} {!! get_country_field('shipping_country','shipping_country','form-control') !!} {{__('Street Address')}} {{__('Town/City')}} {{__('District')}} {!! render_cart_total_table() !!} {!! render_payment_gateway_for_form(true) !!} @if(!empty(get_static_option('manual_payment_gateway'))) {{__('Transaction ID')}} {!! get_manual_payment_description() !!} @endif {{__('Confirm Order')}} @else {{__('No Item In Cart!')}} @endif @endsection @section('scripts') @if(!empty(get_static_option('site_google_captcha_v3_site_key'))) @endif @endsection