Inside app \ Http \ Controllers \ Auth \ LoginController.php
Add this override method
/**
* Determina a quantidade de tentativas de acesso caso a senha esteja errada
* 6 Tentativas por 30 minutos
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function hasTooManyLoginAttempts(Request $request)
{
return $this->limiter()->tooManyAttempts(
$this->throttleKey($request), 6, 30
);
}
This value comes from Laravel's CORE, this method above serves to override the default code. If you are using AUTH correctly within Laravel, this message will be displayed automatically, and the value to be displayed will match what you have edited.
This structure is for you to be able to add translation packages within your project.
Here's a repository to help with the translation of your project.
link