@include("errors.messageFlash")
@csrf
@method('post')
@include('components.inputs._inputType',[
"for" => null,
"label" => "CPF",
"name" => "cpf",
"id" => null,
"required" => true,
"type" => null,
"old" => old('cpf'),
"oninput" => "javascript:aplicarMascaraCPF(this)",
"readonly" => false,
"small" => null,
])
@include('components.buttons._backAndSend', [
'textBack' => 'Voltar',
'textSend' => 'Verificar',
'routeBack' => 'admin.guias.index'
]
)