@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.category.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('category_name'))
{{ $errors->first('category_name') }}
@endif {{ trans('cruds.category.fields.category_name_helper') }}
@if($errors->has('category_slug'))
{{ $errors->first('category_slug') }}
@endif {{ trans('cruds.category.fields.category_slug_helper') }}
@if($errors->has('cat_type'))
{{ $errors->first('cat_type') }}
@endif {{ trans('cruds.category.fields.cat_type_helper') }}
@if($errors->has('parent'))
{{ $errors->first('parent') }}
@endif {{ trans('cruds.category.fields.parent_helper') }}
@if($errors->has('category_details'))
{{ $errors->first('category_details') }}
@endif {{ trans('cruds.category.fields.category_details_helper') }}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif {{ trans('cruds.category.fields.image_helper') }}
@if($errors->has('cat_image'))
{{ $errors->first('cat_image') }}
@endif {{ trans('cruds.category.fields.cat_image_helper') }}
@endsection @section('scripts') @endsection