@extends('admin.layout.app') @section('content')
{{-- Card --}}

Edit Product

@csrf @method('PUT') {{-- Product Name --}}
@error('product_name') {{ $message }} @enderror
{{-- Product Full Name --}}
@error('product_fullname') {{ $message }} @enderror
{{-- Category --}}
{{-- Subcategory --}}
@error('subcategory_id') {{ $message }} @enderror
@error('brand_id') {{ $message }} @enderror
{{-- Age --}}
{{-- Pricing --}}
{{-- Stock --}}
@error('stock') {{ $message }} @enderror
{{-- SKU --}}
{{-- Overview --}}
{{-- Specification --}}
{{-- Shipping --}}
{{-- Product Images --}}
{{-- GST --}}
{{-- Gender --}}
{{-- Status --}}
{{-- Submit --}}
{{-- ================= END PRODUCT FORM ================= --}} {{-- ================= EXISTING IMAGES (OUTSIDE FORM) ================= --}} @if ($products->images && count($products->images))
@foreach ($products->images as $img)
@csrf @method('DELETE')
@endforeach
@endif {{-- ================= END IMAGES ================= --}}
{{-- /Card --}}
@endsection