@section('title', __('checkout/billing.Select Billing Address')) @section('header-style', 'inner_nav') @push('style') @endpush @push('script') @endpush
@Lang('checkout/billing.Cart')
@Lang('checkout/billing.Billing address')
@Lang('checkout/billing.Review')
@csrf

@Lang('checkout/billing.You will') @Lang('checkout/billing.earn 1 loyality') @Lang('checkout/billing.when completing this ordder')

@Lang('checkout/billing.Collect 5 loyalty points and receive ' . config('settings.loyalty_discount') . '% discount')

@Lang('checkout/billing.Select Billing Address')

@foreach(auth()->user()->addresses as $address)
@if($address->is_default)

@Lang('checkout/billing.Default')

@endif

{{$address->title}}

  • @Lang('checkout/billing.Name'){{$address->name}}
  • @Lang('checkout/billing.Address') {{$address->address}}
  • @Lang('checkout/billing.Phone') {{$address->phone_number}}
  • @Lang('checkout/billing.Email') {{$address->email}}
@endforeach

@Lang('checkout/billing.Order Summary')

@Lang('checkout/billing.Items')

    @foreach($cart->items as $item)
  • {{$item->product->title}} {{$item->package_price}} @Lang('custom.KWD')
  • @if($item->addon_price > 0)
  • @Lang('cart/cart.Additional options'){{$item->addon_price}} @Lang('custom.KWD')
  • @endif @endforeach

  • @Lang('checkout/billing.Subtotal') {{$cart->sub_total}} @Lang('custom.KWD')
@Lang('checkout/billing.EDIT CART')