@php $product = App\Models\Product::with('category')->findOrFail($productId); @endphp @extends('layouts.admin') @section('content')
{{-- Header --}}

Edit Produk

Update informasi produk {{ $product->name }}.

{{-- Form --}}
@csrf @method('PUT') {{-- Basic Info --}}

Informasi Dasar

@error('name')

{{ $message }}

@enderror
@error('sku')

{{ $message }}

@enderror
@error('categoryId')

{{ $message }}

@enderror
{{-- Image Upload --}}
{{-- Preview Area --}}
{{-- Image Preview --}}
{{-- Remove Button --}}
{{-- Upload Area --}}
@error('image')

{{ $message }}

@enderror
{{-- Pricing --}}

Harga & Stok

{{-- Left Column: Modal --}}
Rp

Masukkan harga modal barang dari supplier.

{{-- Right Column: Jual --}}
Rp
@error('sellPrice')

{{ $message }}

@enderror {{-- Profit Indicator --}}
Laba per Unit: -Rp
{{-- Calculator Tools (Middle Section) --}}
Kalkulator Margin
{{-- Markup % --}}
%

Margin Markup

{{-- Margin % (Gross Margin) --}}
%

Margin Laba

Hati-hati, harga jual lebih rendah dari modal. Anda mengalami kerugian.

{{-- Stok Saat Ini --}}
@error('stock')

{{ $message }}

@enderror

Perubahan stok akan dicatat sebagai penyesuaian manual

@error('threshold')

{{ $message }}

@enderror
{{-- Actions --}}
Batal
@endsection