@extends('admin.layout.app') @section('content') Product Product @include('admin.layout.session') Add New Product @csrf @include('components._categoryDropDown', ['is_required' => true, 'is_multiple' => false, 'is_label' => true, 'is_dash' => true, 'is_subcategory_display' => true, 'is_disabled' => true]) Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif Price @if ($errors->has('price')) {{ $errors->first('price') }} @endif Old Price @if ($errors->has('old_price')) {{ $errors->first('old_price') }} @endif Quantity @if ($errors->has('quantity')) {{ $errors->first('quantity') }} @endif Description {{old('description')}} @if ($errors->has('description')) {{ $errors->first('description') }} @endif Meta Title @if ($errors->has('meta_title')) {{ $errors->first('meta_title') }} @endif Meta Author @if ($errors->has('meta_author')) {{ $errors->first('meta_author') }} @endif Meta Keyword @if ($errors->has('meta_keyword')) {{ $errors->first('meta_keyword') }} @endif Meta Description {{old('meta_description')}} @if ($errors->has('meta_keyword')) {{ $errors->first('meta_keyword') }} @endif Submit Back @endsection @push('js') @endpush