@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')
Add New Product
@if ($errors->any())
@foreach ($errors->all() as $e)
{{ $e }}
@endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif
@csrf
Product Basics
Category
-- choose --
@foreach($categories as $cat)
{{ $cat->name }}
@endforeach
Name
Status
Active
Inactive
Image
Description
Dimensions
Weight
Mass Unit
@foreach($massUnits as $u)
{{ strtoupper($u) }}
@endforeach
Length
Width
Height
Distance Unit
@foreach($distanceUnits as $u)
{{ strtoupper($u) }}
@endforeach
Pack Group (optional)
Max Units / Parcel (optional)
Stack Axis
Height
Width
Length
Attributes & Options
+ Add Attribute
Variants
Generate Variants
Tip: leave SKU empty to auto-generate.
{{-- Hidden payloads --}}
Save Product
Cancel
@include('partials.footer')
@include('global.footer-links')