@extends('web.layout.master') @section('content') @include('web.checkout-header-v2')

Manage Address

@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if (Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }}

@endif @endforeach @foreach($userAddresses as $a)
{{ $a->name }}

{{ $a->street_name }}

@if(!empty($a->street_app_unit))

{{ $a->street_app_unit }}

@endif

{{ $a->city }} {{ $a->state }} {{ $a->zip }}

{{ $a->country }}

@endforeach
Subtotal
${{ str_replace(',','',round(session()->get('subtotal'),2)) }}
get('discountPrice') <= 0) style="display: none" @endif>
Discount ({{ session()->get('couponCode') }})
- ${{ str_replace(',','',(session()->get('discountPrice'))) }}
Estimated Shipping @if(!empty(session()->get('ShippingSurcharges'))) (+${{ str_replace(',','',number_format(session()->get('ShippingSurcharges'),2)) }} surcharge) @endif
${{ str_replace(',','',number_format((session()->get('ShippingCharges') + session()->get('ShippingSurcharges')),2)) }}
Estimated Tax
${{ str_replace(',','',round(session()->get('ShippingTax'),2)) }}


Order Total
${{ str_replace(',','',round(session()->get('total'),2)) }}

Cart ID # {{ (!empty(\Cookie::get('cart')) ? \Cookie::get('cart') : "") }}


Having trouble? Contact us! 866.243.2721

@endsection