@extends('layouts.admin') @section('title', 'Edit Produk') @section('content_header')

Edit Produk

@stop @section('content')

Form Edit Produk

@csrf @method('PUT')
@error('name') {{ $message }} @enderror
@error('slug') {{ $message }} @enderror Slug digunakan untuk URL. Jika kosong, akan di-generate dari nama.
@error('short_description') {{ $message }} @enderror
@if ($product->icon)
Icon Saat Ini:
{{ $product->name }}
@endif
@error('icon') {{ $message }} @enderror Format: JPG, PNG, GIF, SVG. Maks. 2MB
@if ($product->image)
Gambar Saat Ini:
{{ $product->name }}
@endif
@error('image') {{ $message }} @enderror Format: JPG, PNG, GIF. Maks. 2MB
@foreach($product->productDetails as $index => $detail)
Detail {{ $index + 1 }}
@if ($detail->image)
Gambar Saat Ini:
{{ $detail->title }}
@endif
@endforeach
@stop @section('js') @stop @section('css') @stop