@include("errors.messageFlash")
Conta Angra
@csrf
{{-- Preserva redirect para pós-login (ex: cadastro pessoas trans) --}}
@if(!empty($redirect) || request('redirect'))
@endif
@include('components.inputs._inputType',[
"for" => null,
"label" => "Matrícula, CPF ou E-mail",
"name" => "login",
"id" => "matriculation",
"required" => true,
"type" => null,
"old" => old('login'),
"oninput" => "",
"readonly" => false,
"small" => null,
"autocomplete" => "username",
])
@include('components.inputs._inputType',[
"for" => null,
"label" => "Senha",
"name" => "password",
"id" => null,
"required" => true,
"type" => 'password',
"old" => old('password'),
"oninput" => null,
"readonly" => false,
"small" => null,
"autocomplete" => "current-password",
])
@error('password')
{{ $message }}
@enderror
Esqueceu senha?
@php
$recallerName = auth()->getRecallerName();
$hasRecallerCookie = request()->cookie($recallerName) ? true : false;
@endphp