@extends('layouts.partials.master') @section('title', 'Criar Nova Categoria') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar nova categoria']) Voltar
@csrf @method('POST')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if (!\App\Helpers\ModuleHelper::isModuleActive('module_automatic_translations')) @include('layouts.components.translation-create') @endif
@endsection