@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.product.title_singular') }}
@csrf
@if($errors->has('category')) {{ $errors->first('category') }} @endif {{ trans('cruds.product.fields.category_helper') }}
@if($errors->has('sku')) {{ $errors->first('sku') }} @endif {{ trans('cruds.product.fields.sku_helper') }}
@if($errors->has('name')) {{ $errors->first('name') }} @endif {{ trans('cruds.product.fields.name_helper') }}
@if($errors->has('slug')) {{ $errors->first('slug') }} @endif {{ trans('cruds.product.fields.slug_helper') }}
@if($errors->has('description')) {{ $errors->first('description') }} @endif {{ trans('cruds.product.fields.description_helper') }}
@if($errors->has('featured_image')) {{ $errors->first('featured_image') }} @endif {{ trans('cruds.product.fields.featured_image_helper') }}
@if($errors->has('gallery_images')) {{ $errors->first('gallery_images') }} @endif {{ trans('cruds.product.fields.gallery_images_helper') }}
@foreach(App\Models\Product::STATUS_RADIO as $key => $label)
@endforeach @if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.product.fields.status_helper') }}
@if($errors->has('product_sketch')) {{ $errors->first('product_sketch') }} @endif {{ trans('cruds.product.fields.product_sketch_helper') }}
@endsection @section('scripts') @endsection