@extends('layouts.admin') @section('title', 'Edit Product Image') @section('page-title', 'Edit Product Image') @section('content')

Edit Product Image

@csrf @method('PUT')
@error('product_id')
{{ $message }}
@enderror
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 Current image
@endif
@error('sort_order')
{{ $message }}
@enderror
Cancel
@push('scripts') @endpush @endsection