Shipping
{{-- Breadcrumb --}}

Shipping address

Where should we ship your {{ $quantity }} {{ $quantity === 1 ? 'copy' : 'copies' }}?

@include('books.partials.progress-steps', ['currentStep' => 4, 'book' => $book])
{{-- Shipping Form --}}

Delivery Address

@php $saved = session("order.{$book->id}.shipping", []); $prefill = !empty($saved) ? $saved : ($lastOrder ? $lastOrder->toArray() : []); @endphp
@csrf
@error('shipping_name')

{{ $message }}

@enderror
@error('shipping_address_line1')

{{ $message }}

@enderror
@error('shipping_city')

{{ $message }}

@enderror
@error('shipping_state')

{{ $message }}

@enderror
@error('shipping_zip')

{{ $message }}

@enderror

For delivery notifications only.

{{-- Navigation --}}
Back to Quantity
{{-- Sidebar --}}

Your Order

@if($book->cover_image) @else
@endif

{{ $book->title }}

{{ $quantity }} {{ $quantity === 1 ? 'copy' : 'copies' }}

Subtotal ${{ number_format($quantity * $unitPrice, 2) }}
Shipping ${{ number_format($shippingCost, 2) }}
Total ${{ number_format($quantity * $unitPrice + $shippingCost, 2) }}

Orders typically ship within 5-7 business days after payment.