@extends('admin.master') @section('title', 'Add Product') @push('styles') @endpush @section('content')
@csrf

Add Product

✕ Cancel
@if ($errors->any())
নিচের fieldগুলো ঠিক করুন:
@endif {{-- Product Information --}}
Product Information
@error('name')
{{ $message }}
@enderror
@error('sku')
{{ $message }}
@enderror
প্রথম selected category primary category হিসেবে save হবে।
Published
Pre-Order Enabled
{{-- Media --}}
Media
@for ($slot = 2; $slot <= 11; $slot++) @endfor
{{-- Price and Variants --}}
Product Variants
Track product inventory
Enable product variants
{{-- Description --}}
Product Description
{!! old('short_description') !!}
{!! old('long_description') !!}
{{-- Delivery --}}
Delivery Type
{{-- Offers --}}
Offer Setup
@forelse($offers as $offer)
{{ $offer->name }}
@if ($offer->discount_type === 'percentage') {{ $offer->discount_value }}% discount @else ৳{{ $offer->discount_value }} discount @endif
id, old('offers', [])))>
@empty
No active offers found.
@endforelse
{{-- Flags --}}
Product Flags
@forelse($flags as $flag)
{{ $flag->name }}
id, old('flags', [])))>
@empty
No product flags found.
@endforelse
{{-- Digital Product --}}
Digital Product
Digital Product
{{-- SEO --}}
Product SEO
Enable SEO
@endsection @push('scripts') @endpush