@extends('theme-views.layouts.app') @section('title', translate('My_Address').' | '.$web_config['name']->value.' '.translate(' Ecommerce')) @push('css_or_js') @endpush @section('content') @include('theme-views.partials._profile-aside') @csrf {{translate('Choose_Label')}} address_type == 'home' ? 'checked':''}}> {{translate('Home')}} address_type == 'permanent' ? 'checked':''}}> {{translate('Permanent')}} address_type == 'office' ? 'checked':''}}> {{translate('Office')}} {{translate('Contact_Person')}} {{translate('Phone')}} {{translate('Country')}} {{translate('Select_Country')}} @if($country_restrict_status) @foreach($delivery_countries as $country) country? 'selected' : ''}}>{{$country['name']}} @endforeach @else @foreach(COUNTRIES as $country) country == $country['name']? 'selected' : '' }}>{{ $country['name'] }} @endforeach @endif {{translate('City')}} {{translate('Zip_Code')}} @if($zip_restrict_status) @foreach($delivery_zipcodes as $zip) zipcode == $shippingAddress->zip? 'selected' : ''}}>{{ $zip->zipcode }} @endforeach @else @endif {{translate('Go_back')}} {{translate('Choose_Address_Type')}} is_billing == '1' ? 'checked' : ''}} > {{translate('Billing_Address')}} is_billing == '0' ? 'checked' : ''}} > {{translate('Shipping_Address')}} {{translate('Address')}} {{$shippingAddress->address}} {{translate('Reset')}} {{translate('Update_Address')}} @endsection @push('script') @endpush