@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: Gerenciar Assuntos e Subassuntos') @section('content')
@include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => " " . __($headLine), 'routeBack' => 'admin.indicadoresTi.index', 'routeBackParams' => [], 'nameBack' => __('Voltar'), 'permission' => 'INDICADORES_TI', ])
@if (session('success')) @endif @if ($errors->any()) @endif
{{ __('Novo Setor') }}
@csrf
@error('nome_setor') {{ $message }} @enderror
@forelse ($setores as $setor)
{{ $setor->nome }}
@csrf @method('DELETE')
@csrf @method('PUT')
@error('nome_setor_' . $setor->id) {{ $message }} @enderror
@empty
{{ __('Nenhum setor cadastrado.') }}
@endforelse
@endsection