@extends('admin.layouts.app') @section('title', 'Edit Product - ' . $product->name) @section('header', 'Edit Product') @section('content')

Edit Product Information

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('type')

{{ $message }}

@enderror
@error('weight')

{{ $message }}

@enderror
@error('total_price')

{{ $message }}

@enderror
@error('stock_quantity')

{{ $message }}

@enderror
@error('status')

{{ $message }}

@enderror
is_halal) ? 'checked' : '' }} class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded">
@error('is_halal')

{{ $message }}

@enderror
@if ($product->image_path)
{{ $product->name }}

Current product image

Upload a new image below to replace this one

@endif

or drag and drop

PNG, JPG, GIF up to 2MB

@error('image')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
@error('storage_instructions')

{{ $message }}

@enderror

Product Metadata

Created: {{ $product->created_at->format('d M Y, H:i') }}
Last Updated: {{ $product->updated_at->format('d M Y, H:i') }}
Total Orders: {{ $product->orderItems->count() }}
Cancel
@endsection