@extends('layouts.app') @section('content')
{{-- Logotipo --}}
1

Passo 1

2

Passo 2

3

Passo 3

@csrf

Olá {{ \App\Helpers\Utilidade::getPrimeiroNome($usuarioModel->name) }}, por favor informe alguns dados pessoais para completarmos o seu cadastro.

@if ($errors->has('cpf')) {{ $errors->first('cpf') }} @endif
@if ($errors->has('telefone')) {{ $errors->first('telefone') }} @endif
@if ($errors->has('data_nascimento')) {{ $errors->first('data_nascimento') }} @endif
@if ($errors->has('id_genero')) {{ $errors->first('id_genero') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
 

Obrigado {{ \App\Helpers\Utilidade::getPrimeiroNome($usuarioModel->name) }}, agora por favor informe os dados de sua residência.

@if ($errors->has('cep')) {{ $errors->first('cep') }} @endif
@if ($errors->has('id_tipo_endereco')) {{ $errors->first('id_tipo_endereco') }} @endif
@if ($errors->has('endereco')) {{ $errors->first('endereco') }} @endif
@if ($errors->has('numero')) {{ $errors->first('numero') }} @endif
@if ($errors->has('complemento')) {{ $errors->first('complemento') }} @endif
@if ($errors->has('bairro')) {{ $errors->first('bairro') }} @endif
@if ($errors->has('cidade')) {{ $errors->first('cidade') }} @endif
@if ($errors->has('estado')) {{ $errors->first('estado') }} @endif

Agora só falta ler a aceitar os termos de uso da NewPost.

{{-- Botão de submit --}}
@endsection @section('scripts') @endsection