@extends('frontend.frontend-page-master') @section('site-title') {{__('Checkout')}} @endsection @section('page-title') {{__('Checkout')}} @endsection @section('style') @endsection @section('content') @if(\App\Facades\Cart::count() > 0) @if(!auth()->check()) @endif @if(!auth()->check()) @if(get_static_option('disable_guest_mode_for_product_module')) {{__('Guest Order')}} @endif @if(!auth()->check()) @csrf {{__('Login')}} {{__('Remember Me')}} {{__('Create New 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')}} {!! \App\Facades\Cart::cartSummery()!!} {!! render_payment_gateway_for_form(true) !!} @if(!empty(get_static_option('manual_payment_gateway'))) {{__('Attach your bank Document')}} {!! get_manual_payment_description() !!} @endif {{__('Confirm Order')}} @else {{__('No Item In Cart!')}} @endif @endsection @section('scripts') @endsection