https://m.dotdev.co/google-recaptcha-integration-with-laravel-ad0f30b52d7d http://www.17educations.com/laravel/laravel-5-google-recaptcha/ web.php Route:: get ( 'captcha/create' , 'CaptchaController@create' ); Route:: post ( 'captcha/store' , 'CaptchaController@store' ); Route:: get ( 'captcha/camera' , 'CaptchaController@camera' ); script in blade where u use captcha < script src= 'https://www.google.com/recaptcha/api.js' ></ script > @if ( session( 'status' ) ) < div class= "alert alert-success" > {{ session( 'status' ) }} </ div > @endif @if ( session( 'warning' ) ) < div class= "alert alert-warning" > {{ session( 'warning' ) }} </ div > @endif < div class= "col-md-6" > < div class= "g-recaptcha" data-sitekey= " {{env( 'NO...