@extends('layouts.admin') @section('title', 'Add New Product - ' . $supermarket->name) @section('content')

Add New Product

{{ $supermarket->name }}

Product Information
@csrf
Basic Information
@error('product_name')
{{ $message }}
@enderror
@error('brand')
{{ $message }}
@enderror
@error('sku')
{{ $message }}
@enderror Unique identifier for this product
@error('barcode')
{{ $message }}
@enderror
@error('main_category_id')
{{ $message }}
@enderror Choose the broad category type
@error('sub_category_id')
{{ $message }}
@enderror Choose specific product type
@error('aisle_id')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
Pricing Information (AED)
Price Types Explained:
  • Cost Price: The price you paid to purchase/acquire this product
  • Selling Price: The regular retail price customers pay
  • Sale Price: Special promotional/discounted price (optional)
AED @error('cost_price')
{{ $message }}
@enderror
Your purchase/wholesale price
AED @error('selling_price')
{{ $message }}
@enderror
Regular retail price
AED @error('sale_price')
{{ $message }}
@enderror
Special promotional price (optional)
Inventory Management
@error('stock_quantity')
{{ $message }}
@enderror Current units in stock
@error('minimum_stock')
{{ $message }}
@enderror Alert when stock falls below this level
@error('unit')
{{ $message }}
@enderror
Product Images
@error('product_image')
{{ $message }}
@enderror Max size: 2MB. Supported: JPG, PNG, GIF
@error('additional_images')
{{ $message }}
@enderror Select up to 4 additional images. Max size: 2MB each.
Image Tips:
  • Main image: Product front view, clean background preferred
  • Additional images: Different angles, packaging, ingredients label, usage examples
  • High-quality images improve customer confidence and sales
  • Use proper lighting and avoid blurry photos
Back to Inventory
@endsection