@extends('admin.layouts.app') @section('content')
@csrf

Add Products

@if($errors->has('product_name'))
{{ $errors->first('product_name') }}
@endif
@if($categories) @endif
@if($errors->has('category_id'))
{{ $errors->first('category_id') }}
@endif
@if($brands) @endif
@if($errors->has('brand_name'))
{{ $errors->first('brand_name') }}
@endif
@if($companies) @endif
@if($errors->has('company_id'))
{{ $errors->first('company_id') }}
@endif
@if(!empty($types)) @endif
@if($errors->has('type_id'))
{{ $errors->first('type_id') }}
@endif
@if(!empty($sizes)) @endif
@if($errors->has('size_id'))
{{ $errors->first('size_id') }}
@endif
@if($errors->has('product_price'))
{{ $errors->first('product_price') }}
@endif
@if($errors->has('product_quantity'))
{{ $errors->first('product_quantity') }}
@endif

Product Main Image

Fav Icon

Product Child Images

Fav Icon
Fav Icon
Fav Icon
Fav Icon
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@endsection