@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Editar cargo')) @section('content') @include('errors.messageFlash')
@php $headLine = " " . __('Editar cargo'); @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), 'routeBack' => 'admin.legislacao.cadastros.index', 'routeBackParams' => array_merge(['aba' => 'cargos'], $filterParams ?? []), 'nameBack' => __('Cadastros'), 'permission' => 'GERENCIADOR_DE_LEGISLACAO', ])
@csrf @method('put') @foreach($filterParams ?? [] as $key => $value) @if($value !== null && $value !== '') @endif @endforeach
@endsection