Admin Panel
Dashboard
/
Produk
/
Edit
Edit Produk
@if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
Nama Produk
*
@error('name')
{{ $message }}
@enderror
SKU Provider
*
@error('sku')
{{ $message }}
@enderror
Brand
*
Pilih Brand
@foreach($brands ?? [] as $brand)
brand_id ?? '') == $brand->id ? 'selected' : '' }}> {{ $brand->name }}
@endforeach
@error('brand_id')
{{ $message }}
@enderror
Harga Modal
*
Rp
@error('cost_price')
{{ $message }}
@enderror
Harga Jual
*
Rp
@error('price')
{{ $message }}
@enderror
Deskripsi
{{ old('description', $product->description ?? '') }}
Urutan
Provider
Pilih Provider
@foreach($providers ?? [] as $provider)
provider_id ?? '') == $provider->id ? 'selected' : '' }}> {{ $provider->name }}
@endforeach
is_active ?? true) ? 'checked' : '' }} class="w-4 h-4 text-[#0C951E] border-gray-300 rounded focus:ring-[#0C951E]">
Aktifkan produk
is_popular ?? false) ? 'checked' : '' }} class="w-4 h-4 text-[#0C951E] border-gray-300 rounded focus:ring-[#0C951E]">
Tandai sebagai populer
Simpan Perubahan
Batal