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

Edit Product

Back
@csrf @method('PUT')
@if($product->image_url)
Current Current image. Upload a new file to replace.
@endif @error('image')
{{ $message }}
@enderror
@error('name')
{{ $message }}
@enderror
@if($product->barcode)
Barcode
@endif
Cancel
@push('scripts') @endpush @endsection