@extends('admin.layouts.app') @section('title', 'Edit Product') @push('styles') @endpush @section('content')
{{-- MAIN UPDATE FORM --}}
@csrf @method('PUT') {{-- Basic Information --}}
@error('name')

{{ $message }}

@enderror
@error('sku')

{{ $message }}

@enderror
{{-- Description (WYSIWYG) --}}
{{-- Hidden textarea that CKEditor syncs to on submit --}} {{-- CKEditor mounts here --}}
@error('description')

{{ $message }}

@enderror
{{-- Main Image --}}
@if ($product->image)
@endif
{{-- Video Provider --}}
{{-- Gallery Images --}}
@if ($product->images->count() > 0)
@foreach ($product->images as $productImage)
@endforeach
@endif
Cancel
{{-- HIDDEN DELETE FORMS (Moved outside the main form) --}} @foreach ($product->images as $productImage) @endforeach @push('scripts') @endpush @endsection