auth_captcha.blade.php 726 B

1234567891011121314
  1. @if( config('services.geetest_open') )
  2. <div class="form-group @if ($errors->first('geetest_challenge')) has-error @endif">
  3. {!! Geetest::render() !!}
  4. <span class="help-block">{{ $errors->first('geetest_challenge') }}</span>
  5. </div>
  6. @else
  7. <div class="form-group @if ($errors->first('captcha')) has-error @endif">
  8. <input type="text" class="form-control" id="captcha" name="captcha" autocomplete="off" required="" placeholder="请输入下方的验证码">
  9. @if ($errors->first('captcha'))
  10. <span class="help-block">{{ $errors->first('captcha') }}</span>
  11. @endif
  12. <div class="mt-10"><a href="javascript:void(0);" id="reloadCaptcha"><img src="{{ captcha_src()}}"></a></div>
  13. </div>
  14. @endif