@include('layouts.navigation')
{{-- Header --}}
✏️

Edit Product

Update product information

← Back
{{-- Error Alert --}} @if ($errors->any())
⚠️
Validation Error!
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Form --}}
@csrf @method('PUT')
{{-- Product Name --}}
🏷️
{{-- Price --}}
💰
Current: Rp {{ number_format($product->price, 0, ',', '.') }}
{{-- Stock --}}
📊
@if($product->stock <= 0) ⚠️ Out of stock @elseif($product->stock <= 50) ⚠️ Low stock @else ✓ Good stock @endif
{{-- Description --}}
📝
{{-- Image URL --}}
🖼️
Optional: Direct link to product image
{{-- Image Preview --}}
Preview

Current Product Image

{{-- Product Info Card --}}
Product ID {{ $product->id }}
Created At {{ $product->created_at->format('d M Y, H:i') }}
Last Updated {{ $product->updated_at->format('d M Y, H:i') }}
{{-- Action Buttons --}}
{{-- Hidden Delete Form --}}