Add Products

Input Example

@csrf
@if($errors->has('category_id'))

{{ $errors->first('category_id') }}

@endif
@if($errors->has('sub_category_id'))

{{ $errors->first('sub_category_id') }}

@endif
@if($errors->has('child_category_id'))

{{ $errors->first('child_category_id') }}

@endif
@if($errors->has('brand_id'))

{{ $errors->first('brand_id') }}

@endif
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if($errors->has('mrp'))

{{ $errors->first('mrp') }}

@endif
@if($errors->has('discount'))

{{ $errors->first('discount') }}

@endif
@if($errors->has('selling_price'))

{{ $errors->first('selling_price') }}

@endif
@if($errors->has('hsn_code'))

{{ $errors->first('hsn_code') }}

@endif
@if($errors->has('stock'))

{{ $errors->first('stock') }}

@endif
@if($errors->has('product_highlights'))

{{ $errors->first('product_highlights') }}

@endif
@if($errors->has('product_description'))

{{ $errors->first('product_description') }}

@endif

Dimensions

@if($errors->has('length'))

{{ $errors->first('length') }}

@endif
@if($errors->has('breadth'))

{{ $errors->first('breadth') }}

@endif
@if($errors->has('height'))

{{ $errors->first('height') }}

@endif
@if($errors->has('weight'))

{{ $errors->first('weight') }}

@endif

@if($errors->has('country_of_origin'))

{{ $errors->first('country_of_origin') }}

@endif
@if($errors->has('manufacturer_details'))

{{ $errors->first('manufacturer_details') }}

@endif
@if($errors->has('importer_details'))

{{ $errors->first('importer_details') }}

@endif
@if($errors->has('packer_details'))

{{ $errors->first('packer_details') }}

@endif

SEO Terms

@if($errors->has('meta_title'))

{{ $errors->first('meta_title') }}

@endif
@if($errors->has('meta_description'))

{{ $errors->first('meta_description') }}

@endif
@if($errors->has('meta_keywords'))

{{ $errors->first('meta_keywords') }}

@endif

@if($errors->has('tags'))

{{ $errors->first('tags') }}

@endif
@if($errors->has('note'))

{{ $errors->first('note') }}

@endif
@if($errors->has('status'))

{{ $errors->first('status') }}

@endif
@if($errors->has('featured_image'))

{{ $errors->first('featured_image') }}

@endif
@if($errors->has('bulk_images'))

{{ $errors->first('bulk_images') }}

@endif
@include('admin.layouts.footer')