@extends('layouts.app') @section('title', 'Tambah Produk') @push('styles') @endpush @section('content') @php $subcategoryMap = $categories->mapWithKeys(function ($category) { return [ (string) $category->id => $category->children->map(function ($child) { return [ 'value' => $child->slug, 'label' => $child->name, ]; })->values()->all(), ]; })->all(); @endphp
{{-- Ambient Light penambah kontras --}}
{{-- Header Form --}}
Add Commodities

Tambah Produk Baru

Lengkapi detail spesifikasi produk untuk ditampilkan ke etalase toko Anda.

{{-- Error Validation Alert --}} @if ($errors->any())
⚠️ Ada beberapa kesalahan input:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Form Start --}}
@csrf {{-- Row 1: Nama & Harga --}}
Nama Produk
Harga Jual (Rp)
{{-- Row 2: Kategori & Jenis --}}
Kategori Game
Sub Kategori Produk
{{-- Row 3: Stok & Upload Gambar --}}
Jumlah Stok Barang
Unggah Banner / Foto Produk

Maksimal file size 5 MB per foto. Kamu bisa memilih multi-file sekaligus.

{{-- Image Preview Section --}}
Live Preview Foto Akan tampil di etalase pembeli
{{-- Row 4: Deskripsi --}}
Deskripsi Ringkas / Ketentuan Produk
{{-- Form Actions Footer --}}
BATALKAN
@endsection