@extends('layouts.app') @section('title', 'Place Order - ' . $product->name) @section('content')

Order Information

@csrf
{{ $product->name }}

{{ $product->name }}

Seller: {{ $product->user->company_name ?? $product->user->name }}

${{ number_format($product->price, 2) }}/unit

Maximum: {{ $product->quantity }} units available
@error('quantity')

{{ $message }}

@enderror
@error('payment_method')

{{ $message }}

@enderror
@error('shipping_address')

{{ $message }}

@enderror
@error('notes')

{{ $message }}

@enderror
Cancel

Order Summary

Product Price ${{ number_format($product->price, 2) }}
Quantity 1
Shipping Calculated later
Total Amount ${{ number_format($product->price, 2) }}

Payment Required

Your order will be processed after payment confirmation by our team.

• Order will be confirmed after payment verification

• Shipping costs will be calculated separately

• You will receive payment instructions after order placement

• You can chat with the seller for any questions

@endsection