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

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

Leave empty if no expiry date.

{{-- Shelf Visual Guide --}}
📍 Shelf Map
@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 auto-fill the shelf code above.

{{-- Image --}}
Product Image
🖼️
Click to upload image
JPG, PNG, WEBP — max 2MB
{{-- Featured --}}
Cancel
@endsection @push('scripts') @endpush