@extends('front.layout.app') @section('content')

Checkout

@csrf

Fill the form below to complete your purchase

Already Registered? Click here to Login now

@error('email') @enderror
@error('password') @enderror
{{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}}

Order Summary

@php use Illuminate\Support\Facades\Session; $totalItem = 0; $totalAmount = 0; if(Session::has('cart')) { foreach (Session::get('cart') as $cart) { $totalItem += $cart['quantity']; $totalAmount += $cart['price'] * $cart['quantity']; } } @endphp Subtotal ({{$totalItem ?? ''}} items)
USD {{$totalAmount ?? ''}}.00

Shipping fee
USD 0.00


Total
USD {{$totalAmount ?? ''}}.00

@endsection