@extends('adminlte::page') @section('title', 'Edição de Categoria') @section('content_header')

Editar categoria

@stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif
@method('PATCH') @csrf

{{ __('Editar dados da categoria') }}

@error('nome') {{ $message }} @enderror
@method('delete') @csrf
@stop @section('css') @stop @section('js') @stop