@extends('layouts.main-app') @section('title', 'Home') @section('content') @include('layouts.navbar') @if ($errors->any())
@endif

Checkout


@csrf

Billing Information

First Name

Last Name

Middle Name

Email Address

Phone Number

Street Address

City

State/Province

ZIP/Postal Code


Order notes (optional)

Enter Promo Code

Your Order

Product

Subtotal


@foreach ($cart as $item)

{{ $item['name'] }} x {{ $item['quantity'] }}

₱{{ number_format($item['price'] * $item['quantity'], 2) }}


@endforeach

Subtotal

₱{{ number_format($total, 2) }}


Shipping

Discount

Tax

TBD

-₱0.00

₱0.00


Total

₱{{ number_format($total, 2) }}

Payment Method

{{-- --}}

Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our privacy policy

@include('layouts.footer') @endsection