@extends('admin.layouts.app') @section('title', 'Edit Product - Admin') @section('page-title', 'Edit Product') @section('content')
← Back
@if($errors->any())
{{ $errors->first() }}
@endif
@csrf @method('PUT') {{-- Basic Info --}}
Basic Info
{{-- Pricing --}}
Pricing & Stock
{{-- Shelf & Expiry --}}
Location & Expiry

A = Beverage, B = Snacks, C = Instant Food, D = Stationery

{{-- Shelf Visual Guide --}}
📍 Shelf Map — Current: {{ $product->shelf_code }}
@foreach(['A' => ['Beverage','#2980B9'], 'B' => ['Snacks','#E67E22'], 'C' => ['Instant Food','#E74C3C'], 'D' => ['Stationery','#27AE60']] as $letter => $info)
{{ $letter }} — {{ $info[0] }}
@for($i = 1; $i <= 8; $i++)
{{ $letter.$i }}
@endfor
@endforeach

👆 Click a slot to change shelf location.

{{-- Image --}}
Product Image
@if($product->image)

Current image — click to change

@else
🖼️
Click to upload image
JPG, PNG, WEBP — max 2MB
@endif

Leave empty to keep current image.

{{-- Featured --}}
Cancel
@endsection @push('scripts') @endpush