@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
@include('layouts.components.translation-create')
@endsection