@extends('layouts.admin') @section('page-title', 'Edit Product') @section('topbar-actions') ← Back to Products @endsection @section('content')
@csrf @method('PUT')
✏️ Edit Product — {{ $product->name }}
@error('name')
{{ $message }}
@enderror
🖼️ Product Image
@if($product->image_url)
Upload a new image to replace the current one
@endif
Cancel
@endsection