@include('errors.messageFlash')
{{ __('Crie sua conta') }}
@csrf
@include('components.inputs._inputType',[
"for" => null,
"label" => "CPF",
"name" => "cpf",
"id" => null,
"required" => true,
"type" => null,
"old" => old('cpf'),
"oninput" => "aplicarMascaraCPF(this)",
"readonly" => false,
"small" => null,
"autocomplete" => "off",
])
@include('components.inputs._inputType',[
"for" => null,
"label" => "E‑mail",
"name" => "email",
"id" => null,
"required" => true,
"type" => null,
"old" => old('email'),
"oninput" => null,
"readonly" => false,
"small" => null,
"autocomplete" => "email",
])