@extends('admin.layouts.app') @section('content')

Edit Produk

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

{{ $message }}

@enderror
@error('category_id')

{{ $message }}

@enderror
Rp
@error('price')

{{ $message }}

@enderror
@error('stock')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
@if($product->image)

Gambar saat ini:

{{ $product->name }}
@endif

atau drag and drop

PNG, JPG, GIF hingga 2MB

@error('image')

{{ $message }}

@enderror
@if($product->transactionItems()->count() > 0)

Produk ini sudah pernah ditransaksikan {{ $product->transactionItems()->count() }} kali. Hati-hati saat mengubah harga.

@endif
Batal
@endsection