@extends('frontend.layout.master') @section('content')

{{__('translation.yourcart')}} 3

    @if(count($data)>0) @foreach($data as $i => $value)
  • {{$value['name']}}
    {{__('translation.quantity')}}: {{$value['quantity']}}
    {{ number_format($value['price']*$value['quantity'], 2) }}
  • @endforeach @endif
  • {{__('translation.total')}}
@if(!Auth::guard('customer')->check())

{{__('translation.note')}} {{__('translation.loggedinguestnote')}}


@else @endif
@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{__('translation.shippingaddress')}}

@csrf
Valid first name is required.
Valid last name is required.
Please enter a valid email address for shipping updates.
Please select a valid country.
Zip code required.
Please enter your shipping address.
City code required.
Please provide a valid state.

{{__('translation.payment')}}

@endsection @push('custom-css') @endpush @push('custom-script') @endpush