@extends('layouts.admin') @section('title', 'Edit Product Image') @section('page-title', 'Edit Product Image') @section('content') Edit Product Image @csrf @method('PUT') Product * Select Product @foreach($products as $product) product_id) == $product->id ? 'selected' : '' }}>{{ $product->name }} @endforeach @error('product_id') {{ $message }} @enderror Image Leave empty to keep current image. Accepted formats: JPEG, PNG, JPG, GIF, WEBP. Max size: 5MB @error('image') {{ $message }} @enderror @if($image->image_path) Current Image @endif Sort Order @error('sort_order') {{ $message }} @enderror Update Product Image Cancel @push('scripts') @endpush @endsection