laravel-user-email-verification
laravel-user-email-verification copied to clipboard
Recaptcha and redirect
Hi it works well for me too. However I also implemented re-captcha, and that does not work, it always says it is not checked. In my AuthController I have this: return Validator::make($data, [ ‘username’ => ‘required|max:255′, ’email’ => ‘required|email|max:255|unique:users’, ‘password’ => ‘required|min:6|confirmed’, ‘Recaptcha’ => ‘required|captcha’, ]); Any ideas?
Also After registration (clicking on the link) I need to do something with users, so I had this in my AuthController protected $redirectTo = ‘/postregister’; This is ignored now. Any ideas?
Many thanks Andre