@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('parent_id'))
{{ $errors->first('parent_id') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($category->image) Logo @endif @if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if ($category->icon) Icon @endif @if ($errors->has('icon'))
{{ $errors->first('icon') }}
@endif
@include('layouts.components.translation-edit')
@endsection