Ejemplo n.º 1
0
 /**
  * Redirect the user with a flash message if the captcha is required to be passed first
  *
  * @return bool|\Illuminate\HTTP\RedirectResponse
  */
 protected function redirect()
 {
     if ($this->captcha->isRequired()) {
         return $this->helpers->redirectWithFlashMessage('error', 'Please verify that you are human first.');
     }
     return false;
 }