anhskohbo / no-captcha

No CAPTCHA reCAPTCHA For Laravel.
https://packagist.org/packages/anhskohbo/no-captcha
MIT License
1.77k stars 233 forks source link

Captcha not visible on mobile phones. #78

Open aishabadar opened 7 years ago

aishabadar commented 7 years ago

Captcha is working great on desktop but it is not visible on mobile phones. My code is:

 <div class="row">
       <div class="col-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3 col-xs-12 text-center">
                     {!! app('captcha')->display(); !!}
                     @if ($errors->has('g-recaptcha-response'))
                                      <span class="help-block">
                                        <strong>Captcha can not be empty.</strong>
                                    </span>
                     @endif
               </div>
 </div>