@extends('admin.layouts.app') @section('title', 'Edit Product') @section('page-title', 'Edit Product') @section('content')
@csrf @method('PUT')

Leave empty if not on sale. Must be less than regular price.

@error('sale_price')

{{ $message }}

@enderror
@if($product->images->count() > 0)
@foreach($product->images as $image)
Product Image
@endforeach
@endif

💡 Tip: You can select multiple images at once. The first image will automatically be set as the primary (main) image.

What are Specifications?

Add additional product details that will be displayed on the product page. Examples: Size, Ingredients, Allergens, Storage instructions, etc.

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