@extends('admin.layouts.app') @section('title','Edit Product — '.$product->product_name) @section('breadcrumb') / Inventory / {{ $product->product_name }} / Edit @endsection @section('content')
Product Details
@csrf @method('PUT')
@error('product_name')
{{ $message }}
@enderror
Use "Add Stock" on the product page to adjust quantity.
@if($product->product_image) {{ $product->product_image }} @endif
Cancel
@endsection