@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.category.title_singular') }}
@method('POST') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.category.fields.name_helper') }}
@if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.category.fields.type_helper') }}
@if($errors->has('code'))
{{ $errors->first('code') }}
@endif {{ trans('cruds.category.fields.code_helper') }}
@endsection