@extends('admin.master') @section('content')

Create Product

Create product with attributes and variants

@if ($errors->any())
Please fix the following:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @include('admin.products._form', [ 'product' => null, 'shops' => $shops, 'categories' => $categories, 'brands' => $brands, 'attributeList' => $attributes, 'submitText' => 'Create' ])
@endsection