@extends('layouts.navfot') @section('title', 'Checkout - Pembayaran') @section('content')
@csrf
Informasi Pembeli
@error('customer_name')
{{ $message }}
@enderror
@error('customer_email')
{{ $message }}
@enderror
@error('customer_phone')
{{ $message }}
@enderror
@error('customer_address')
{{ $message }}
@enderror
Masukkan alamat lengkap termasuk kota, kode pos
Metode Pembayaran
@error('payment_method')
{{ $message }}
@enderror
Catatan (Opsional)
Ringkasan Pesanan
@foreach ($cartItems as $item)
@if ($item['product']->image) {{ $item['product']->name }} @else
@endif
{{ $item['product']->name }}
Rp {{ number_format($item['product']->price, 0, ',', '.') }} x {{ $item['qty'] }}
Rp {{ number_format($item['subtotal'], 0, ',', '.') }}
@endforeach
Keamanan Transaksi
  • • Data Anda aman dan terenkripsi
@endsection