From 0b5bc2cff25c90423dfbe02142ae69e2d71a4a2a Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 8 Sep 2022 15:30:23 -0300 Subject: [PATCH] Preenchimento de dados a partir do CEP na parte de substituir o participante e o plano --- ...bstituirParticipanteCompletoForm.blade.php | 94 ++++++++++++++++--- 1 file changed, 82 insertions(+), 12 deletions(-) diff --git a/resources/views/administrador/substituirParticipanteCompletoForm.blade.php b/resources/views/administrador/substituirParticipanteCompletoForm.blade.php index 6662f7b..0a320a0 100644 --- a/resources/views/administrador/substituirParticipanteCompletoForm.blade.php +++ b/resources/views/administrador/substituirParticipanteCompletoForm.blade.php @@ -110,7 +110,8 @@
@component('componentes.input', ['label' => 'CEP']) - + @error('cep') {{ $message }} @@ -119,13 +120,8 @@ @endcomponent
- @component('componentes.select', ['label' => 'Estado']) - + @component('componentes.input', ['label' => 'Estado']) + @error('uf') {{ $message }} @@ -136,7 +132,8 @@
@component('componentes.input', ['label' => 'Cidade']) - + @error('cidade') @@ -147,7 +144,7 @@
@component('componentes.input', ['label' => 'Bairro']) - + @error('bairro') @@ -158,7 +155,7 @@
@component('componentes.input', ['label' => 'Rua']) - + @error('rua') @@ -431,4 +428,77 @@
- \ No newline at end of file + + + + \ No newline at end of file -- GitLab