@extends('admin.layouts.app') @section('title', 'Edit Product') @section('content')

Edit Product

{{ $product->name }}

@csrf @method('PUT')

Basic Information

Pricing

Product Images

@if($product->image)
{{ $product->name }}
@endif
@error('image')

{{ $message }}

@enderror
@if($product->gallery->count() > 0)
@foreach($product->gallery as $galleryImage)
Gallery {{ $loop->iteration }}
@endforeach
@endif

Inventory

Variants

@foreach($colors as $color) @endforeach
@foreach($sizes as $size) @endforeach

Status

Organization

Cancel
@push('scripts') @endpush @endsection