@extends('layouts.front_page') @section('content')





Customer & Delivery Details


@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('cell_number')) {{ $errors->first('cell_number') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('payment_method')) {{ $errors->first('payment_method') }} @endif


Cart

@foreach($cart_items as $item) @endforeach
Name Quantity Unit Price Sub Total
{{$item->name}}
Delivery Fee
TOTAL :

NB: YOU WILL BE REDIRECTED TO PAYNOW TO COMPLETE YOU PAYMENT






@endsection