@extends('front.layout.main') @section("title"," Wishours") @section('content')

Your cart {{$cart->getTotalQty()}}

    @foreach($cart->getContents() as $slug => $product)
  • {{$product['product']->title}}

    {{$product['qty']}} X {{$product['price']}} (INR)
  • @endforeach {{--
  • Promo code
    EXAMPLECODE
    -$5
  • --}}
  • Total (Rs)

    {{$cart->getTotalPrice()}} (INR)
{{--
{{ csrf_field() }}
--}}

Billing address

{{ csrf_field() }}
@if($errors->has('billing_firstName'))
{{$errors->first('billing_firstName')}}
@endif
@if($errors->has('billing_lastName'))
{{$errors->first('billing_lastName')}}
@endif
{{--
@
@if($errors->has('username'))
{{$errors->first('username')}}
@endif
--}}
@if($errors->has('email'))
{{$errors->first('email')}}
@endif
@if($errors->has('billing_address1'))
{{$errors->first('billing_address1')}}
@endif
@if($errors->has('billing_address2'))
{{$errors->first('billing_address2')}}
@endif
@if($errors->has('billing_country'))
{{$errors->first('billing_country')}}
@endif
@if($errors->has('billing_state'))
{{$errors->first('billing_state')}}
@endif
@if($errors->has('billing_zip'))
{{$errors->first('billing_zip')}}
@endif


Shipping address

Please enter your shipping address.

{{-- --}}
@endsection