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