@extends('backend.layout') @push('backend_css') @endpush @section('backend_content')
{{-- ══ Header ══ --}}

Add Product to {{ $shop->name }}

Create a new product
Back
{{-- ══ Create Form ══ --}}
@csrf {{-- ══ Basic Information ══ --}}
@error('product_title')
{{ $message }}
@enderror
{{-- ══ Pricing ══ --}}
@error('price')
{{ $message }}
@enderror
@error('offer_price')
{{ $message }}
@enderror
Leave empty for always-on offer price. @error('offer_expiry_date')
{{ $message }}
@enderror
@error('stock')
{{ $message }}
@enderror
{{-- ══ Feature Image ══ --}}
@error('feature_image')
{{ $message }}
@enderror Max size: 2MB. Formats: JPEG, PNG, JPG, GIF, WebP
{{-- ══ Gallery Images ══ --}}
@error('gallery_images')
{{ $message }}
@enderror Select multiple images. Max size per image: 2MB. Formats: JPEG, PNG, JPG, GIF, WebP
{{-- ══ Dynamic Product Attributes ══ --}}
Product Variations / Attributes
Add dynamic attributes based on product type. Example: RAM = 4GB,8GB · Type = Inverter,Non Inverter
Variant Availability
Track stock for sellable variants like Black, White, 64GB, or XL. When variants are added, product stock is calculated automatically from these rows.
Cancel
@endsection