@extends('layouts.supplier') @section('title', 'Edit Produk') @section('content')

Edit Produk

Perbarui informasi produk Anda.

@csrf @method('PUT')

Informasi Dasar

@error('name') {{ $message }} @enderror
@error('category_id') {{ $message }} @enderror
{{ $product->stock }} pcs (dikelola via konsinyasi)
@error('description') {{ $message }} @enderror

Gambar Produk

@error('image') {{ $message }} @enderror

Harga & Status

Rp

Harga yang Anda ajukan. Admin akan menentukan harga jual final.

@error('price') {{ $message }} @enderror
@if($product->approvalStatus === 'PENDING') Menunggu Review Admin @elseif($product->approvalStatus === 'APPROVED') Disetujui @elseif($product->approvalStatus === 'REJECTED') Ditolak @if($product->rejectionReason)

Alasan: {{ $product->rejectionReason }}

@endif @endif
Batal
@endsection