@extends('backEnd.layouts.master') @section('title', 'Add Product') @section('content') @if($errors->any()) @endif
@csrf {{-- Tab Navigation --}}
{{-- Tab 1: Basic Info --}}
Basic Information
@error('name')
{{ $message }}
@enderror
@error('category_id')
{{ $message }}
@enderror
Leave empty to auto-generate
{{-- Tab 2: Price & Stock --}}
Price & Stock
@error('price')
{{ $message }}
@enderror
Leave empty = no sale
Report-এ profit হিসাবের জন্য
Variant product হলে stock Variants tab-এ প্রতিটি variant-এ দিন
{{-- Tab 3: Images --}}
Product Images
Click to upload thumbnail
Recommended: 800×800px, JPG/PNG/WebP
@include('backEnd.product.partials.image-seo-fields', [ 'prefix' => 'thumbnail_seo', 'values' => [ 'alt_text' => old('thumbnail_seo.alt_text'), 'title' => old('thumbnail_seo.title'), 'caption' => old('thumbnail_seo.caption'), 'description' => old('thumbnail_seo.description'), ], ])
{{-- Tab 4: Variants --}}
Sizes & Colors
@include('backEnd.product.partials.variant-fields')
{{-- Tab 5: SEO --}}
SEO Information
Comma separated
{{-- Right Sidebar --}}
{{-- Actions — Save + Next (always visible) --}}
Actions
Step 1 of 5 — Basic Info
Cancel
{{-- Progress --}}
Progress
  • Basic Info
  • Price & Stock
  • Images
  • Variants
  • SEO & Save
{{-- Publishing --}}
Publishing
@endsection @push('styles') @endpush @push('scripts') @endpush