@extends('layouts.app') @section('title', 'Edit Produk') @section('page-title', 'Edit Produk') @push('head') @endpush @section('content')
@csrf @method('PUT')
@error('code')

{{ $message }}

@enderror
@error('name')

{{ $message }}

@enderror
@error('category_id')

{{ $message }}

@enderror
Stok saat ini: {{ $product->stock }} {{ $product->unit }} — untuk mengubah stok gunakan menu Penyesuaian Stok.
is_active) ? 'checked' : '' }} class="h-4 w-4 text-blue-600 border-gray-300 rounded">
Batal
@php $categoriesData = $categories->map(fn($c) => ['id' => $c->id, 'name' => $c->name]); $brandsData = $brands->map(fn($b) => ['id' => $b->id, 'name' => $b->name]); $initCatId = old('category_id', $product->category_id); $initBrandId = old('brand_id', $product->brand_id); $initCatName = $categories->firstWhere('id', $initCatId)?->name ?? ''; $initBrandName = $brands->firstWhere('id', $initBrandId)?->name ?? ''; @endphp @push('scripts') @endpush @endsection