@extends('layouts.front-end.app') @section('title',translate('shipping_Address')) @push('css_or_js') @endpush @section('content') @php($billingInputByCustomer=getWebConfig(name: 'billing_input_by_customer'))

{{translate('checkout')}}

@include('web-views.partials._checkout-steps',['step'=>2])
@php($defaultLocation = getWebConfig(name: 'default_location')) @if($physical_product_view)

{{ translate('shipping_address')}}

@php($shippingAddresses= \App\Models\ShippingAddress::where(['customer_id'=>auth('customer')->id(), 'is_guest'=>0])->get())
  • @if ($shippingAddresses->count() >0)
    @endif
    count()==0?'required':''}} id="name">
    count()==0?'required':''}}>
    @if(!auth('customer')->check())
    count()==0?'required':''}}>
    @endif
    count()==0?'required':''}}>
    @if($zip_restrict_status == 1) @else count()==0?'required':''}}> @endif
    {{ translate('note') }}: {{ translate('you_need_to_select_address_from_your_selected_country') }}
    @if(getWebConfig('map_api_status') ==1 )
    @endif
@if(!Auth::guard('customer')->check() && $web_config['guest_checkout_status'])
@endif @endif @if($billingInputByCustomer)

{{ translate('billing_address')}}

@php($billingAddresses=\App\Models\ShippingAddress::where(['customer_id'=>auth('customer')->id(), 'is_guest'=>'0'])->get()) @if($physical_product_view)
@endif
@if(!$physical_product_view)
Info {{ translate('When_you_input_all_the_required_information_for_this_billing_address_it_will_be_stored_for_future_purchases') }}
@endif
  • @if ($billingAddresses->count() >0)
    @endif
    count()==0?'required':''}}>
    count()==0 ? 'required' : '' }}>
    @if(!auth('customer')->check())
    count()==0?'required':''}}>
    @endif
    count()==0?'required':''}}>
    @if($zip_restrict_status) @else count()==0?'required':''}}> @endif
    {{ translate('note') }}: {{ translate('you_need_to_select_address_from_your_selected_country') }}
    @if(getWebConfig('map_api_status') ==1 )
    @endif @if(auth('customer')->check())
    @endif
@if(!Auth::guard('customer')->check() && $web_config['guest_checkout_status'] && !$physical_product_view)
@endif @endif
@include('web-views.partials._order-summary')
@endsection @push('script') @if(getWebConfig('map_api_status') ==1 ) @endif @endpush