@extends('admin.layouts.master') @section('title', 'Add New Category') @section('css') @endsection @section('content')

Create Category

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

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

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

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

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

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

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

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

@endif
Meta Section
@if ($errors->has('meta_title'))

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

@endif
Category Meta Image

Add Category Meta Image

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

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

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

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

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

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

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

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

@endif
Category Gallery
Category Image *

Add Category Image

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

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

@endif
Category Banner Image

Add Category Banner Image

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

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

@endif
Label Section
@if ($errors->has('label_text'))

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

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

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

@endif
@endsection @section('js') @endsection