@extends("front/layout.master") @section('title','Billing Address - Checkout |') @section("body") @php Session::forget('from-order-step-3'); @endphp
@auth

{{ Auth::user()->name }}

{{ Auth::user()->email }}

@endauth

@csrf
@php $add = Session::get('address'); @endphp @foreach(Auth::user()->addresses as $address)

@if($address->defaddress == 1)
{{ __('staticwords.Default') }}
@endif
@php $c = App\Allcountry::where('id',$address->country_id)->first(); $s = App\Allstate::where('id',$address->state_id)->first(); $ci = App\Allcity::where('id',$address->city_id)->first(); @endphp {{ strip_tags($address->address) }},
{{ $ci ? $ci->name : '' }},{{ $s ? $s->name : ''}},{{ $c ? $c->name : '' }}@if (isset($address->pin_code)), ({{ $address->pin_code }}) @endif
@endforeach

@if(Auth::user()->addresses->count()>0) @endif
{{ __('staticwords.Orchoosedfromsavedaddress') }}
@csrf
@if ($pincodesystem == 1)
@endif