Add Products

Input Example

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

{{ $errors->first('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

Dimensions


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

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

@endif

SEO Terms

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

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

@endif

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

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

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

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

@endif
@if($product->featured_image)
Current Image
@endif
@if($errors->has('bulk_images'))

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

@endif
@if(!empty($product->bulk_images) && is_array(json_decode($product->bulk_images, true)))
@foreach(json_decode($product->bulk_images) as $image)
Bulk Image
@endforeach
@endif
@include('admin.layouts.footer')