@extends('layouts.app') @section('title', isset($product) ? 'Edit Produk' : 'Tambah Produk') @section('page-title', isset($product) ? 'Edit Produk' : 'Tambah Produk') @section('content')

{{ isset($product) ? 'Edit: '.$product->name : 'Produk Baru' }}

← Kembali
@csrf @if(isset($product)) @method('PUT') @endif
{{-- Nama --}}
@error('name')

{{ $message }}

@enderror
{{-- SKU --}}
{{-- Barcode --}}
{{-- Kategori --}}
{{-- Satuan --}}
{{-- Harga Modal --}}
Rp
{{-- Harga Jual --}}
Rp

{{-- Stok --}}
@if(isset($product))

Gunakan tombol "Penyesuaian Stok" untuk mengubah stok.

@endif
{{-- Min Stok --}}
{{-- Track Stok --}}
{{-- Deskripsi --}}
{{-- Gambar --}}
@if(isset($product) && $product->image)
@endif

Maks 2MB. Format: JPG, PNG, WebP

Batal
@push('scripts') @endpush @endsection