@extends('layouts.admin') @section('title', 'Product Create') @push('css') @endpush @section('content') @component('admin.dashboard.breadcumb') @endcomponent
Create Product
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('types')) {{ $errors->first('types') }} @endif
@if ($errors->has('maincategories')) {{ $errors->first('maincategories') }} @endif
@if ($errors->has('categories')) {{ $errors->first('categories') }} @endif
@if ($errors->has('brand')) {{ $errors->first('brand') }} @endif
@if ($errors->has('colors')) {{ $errors->first('colors') }} @endif
@if ($errors->has('sizes')) {{ $errors->first('sizes') }} @endif
@if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('stock')) {{ $errors->first('stock') }} @endif
Product Description
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
Product Main Image
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
Product Image
@if ($errors->has('image1')) {{ $errors->first('image1') }} @endif
Product Image
@if ($errors->has('image2')) {{ $errors->first('image2') }} @endif
Product Image
@if ($errors->has('image3')) {{ $errors->first('image3') }} @endif
Product Features
@if ($errors->has('features')) {{ $errors->first('features') }} @endif

@endsection @push('js') @endpush