@extends('layouts.admin') @section('title', 'Add Footwear Product') @section('content')
Dashboard / Products / Add New Product
@if($errors->any())
@foreach($errors->all() as $error)
• {{ $error }}
@endforeach
@endif
@csrf {{-- ===== Basic info ===== --}}

1. Basic Information

{{-- ===== Pricing & Discount Calculator ===== --}}

2. Pricing, Discount & Taxes

Calculated Selling Price:
{{-- ===== Sizes & Colors ===== --}}

3. Sizes & Colors

Comma-separated sizes (e.g. UK 7, UK 8, UK 9, UK 10)

Comma-separated colors (e.g. Royal Blue, Midnight Black, Ice White)

{{-- ===== Product Images ===== --}}

4. Product Images (Up to 4)

First image will be the primary catalog card thumbnail; up to 4 images for the interactive PDP gallery.

{{-- ===== Toggles ===== --}}
@endsection