We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I try to send the form without completing the captcha the form just reloads with no error messages. In the LoginController.php I have this
protected function validateLogin(Request $request) { $this->validate($request, [ $this->username() => 'required', 'password' => 'required', 'g-recaptcha-response' => 'required|recaptcha', ]); }
I've even tried to change the validation message but nothing shows up
The text was updated successfully, but these errors were encountered:
Add this code to your view
@if(count($errors->all()) > 0) <div class="alert alert-danger" role="alert"> <p><b>Attenzione!</b></p> <ul> @foreach($errors->all() as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif
Sorry, something went wrong.
I used this
<div class="form-group"> <div class="col-md-6 col-md-offset-4">{!! Recaptcha::render() !!} @if ($errors->has('g-recaptcha-response')) <span class="help-block"> <strong>{{ $errors->first('g-recaptcha-response') }}</strong> </span> @endif </div> </div>
No branches or pull requests
If I try to send the form without completing the captcha the form just reloads with no error messages.
In the LoginController.php I have this
I've even tried to change the validation message but nothing shows up
The text was updated successfully, but these errors were encountered: