@extends('layouts.admin') @push('js') @endpush @section('content')

Incluir unidade organizacional

@csrf @alerts @endalerts
@include('components.endereco', ['container' => 'form-row', 'obrigatorio' => false]) @include('components.telefone', ['name' => 'telefone[0]', 'valor' => old('telefone.0.numero'), 'obrigatorio' => false])

@button([ 'icon' => 'save', 'label' => 'Salvar', 'class' => 'btn-primary' ]) @endbutton @if ($superior_id) @button([ 'route' => 'admin.unidades-organizacionais.edit', 'routeParams' => ['unidade' => $superior_id], 'icon' => 'arrow-left', 'label' => 'Voltar', 'class' => 'btn-secondary' ]) @endbutton @else @button([ 'route' => 'admin.unidades-organizacionais.index', 'icon' => 'arrow-left', 'label' => 'Voltar', 'class' => 'btn-secondary' ]) @endbutton @endif
@endsection