@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')
Add New Product
@csrf
Product Image
Set the product image. Only *.png, *.jpg and *.jpeg image files are accepted
{{--
Status
Published
Inactive
Set the product status.
--}}
Product Details
Categories
@foreach ($categories as $category)
category->id == $category->id ? 'selected' : '' }}>{{ $category->name }}
@endforeach
Add product to a category.
Create new category
General Information
Product Name
A product name is required and recommended to be unique.
Description
{!! $product->description !!}
Set a description to the product for better visibility.
Update Product
@include('partials.footer')
@include('global.footer-links')