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