@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.merchandiseCategory.title_singular') }}
@csrf
@if($errors->has('category_name'))
{{ $errors->first('category_name') }}
@endif {{ trans('cruds.merchandiseCategory.fields.category_name_helper') }}
{{--
@if($errors->has('parent_id'))
{{ $errors->first('parent_id') }}
@endif {{ trans('cruds.merchandiseCategory.fields.parent_id_helper') }}
--}}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.merchandiseCategory.fields.status_helper') }}
@endsection @section('scripts') @endsection