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

Editar convênio

@csrf @method('PUT') @alerts @endalerts
@include('components.endereco', ['endereco' => $convenio->endereco ?? null]) @include('components.telefones', ['telefones' => $convenio->contatos()->telefones()->get(), 'malaDireta' => false, 'container' => 'form-row col-12'])

@button([ 'icon' => 'save', 'label' => 'Salvar', 'class' => 'btn-primary' ]) @endbutton @button([ 'route' => 'admin.convenios.index', 'icon' => 'arrow-left', 'label' => 'Voltar', 'class' => 'btn-secondary' ]) @endbutton
@endsection