@extends('layouts.partials.master') @section('title', 'Nova categoria de reclamação') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Nova categoria de reclamação']) Voltar
@csrf @method('POST')
@if ($errors->has('category'))
{{ $errors->first('category') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@include('layouts.components.translation-create')
@endsection