@extends('frontend.arafa-cart.layouts.app') @section('content')
@if(env('MULTILEVEL_CUSTOMER_REGISTER') == true) @if(!Auth::guard('customer')->check())
{{ __('Returning customer?') }} {{ __('Click here to login') }} @error('email') @enderror
{{ __('If you have an account with us, please log in.') }}
@csrf
@endif @endif
{{ __('Have a coupon?') }} {{ __('Click Here to enter your code') }}
@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('payment_fail')) @endif @if(Session::has('user_limit'))
  • {{ Session::get('user_limit') }}
@endif

{{ __('Delivery Information') }}

@if(domain_info('shop_type') == 1) @if(count($locations) > 0)
@endif
@endif @if(env('MULTILEVEL_CUSTOMER_REGISTER') == true && !Auth::guard('customer')->check())
{{ __('Create an account by entering the information below. If you are a returning customer please login at the top of the page.') }}
@endif

{{ __('Order Summqry') }}

@foreach(Cart::content() as $row)
{{ $row->name }} x {{ $row->qty }} @foreach ($row->options->attribute as $attribute)

{{ $attribute->attribute->name }} : {{ $attribute->variation->name }}

@endforeach @foreach ($row->options->options as $op) {{ $op->name }}, @endforeach
{{ amount_format($row->price) }}
@endforeach
{{ __('Shipping Charge') }}
{{ __('Tax') }} {{ amount_format(Cart::tax()) }}
{{ __('Grand Total') }} {{ amount_format(Cart::total()) }}

{{ __('Select Shipping Method') }}

{{ __('Payment Method') }}

@foreach($getways as $key => $row) @php $data=json_decode($row->content); @endphp
@if(isset($data->additional_details)) {{ $data->additional_details }} @endif
@endforeach @if(Cart::count() > 0)
@endif
@endsection @push('js') @endpush