@extends('layouts.admin') @section('title', 'Edit Footwear Product') @section('content')
Dashboard / Products / Edit {{ $product->name }}
@if($errors->any())
@foreach($errors->all() as $error)
• {{ $error }}
@endforeach
@endif
@csrf @method('PUT') {{-- ===== 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

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

4. Product Images ({{ $product->images->count() }}/4)

@if($product->images->isNotEmpty())
@foreach($product->images as $img)
@endforeach
@endif @if($product->images->count() < 4)
@endif
{{-- ===== Toggles ===== --}}
@endsection