微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – Laravel 5.2在注册表中添加条款和条件

我想在我的注册表的验证表单中添加条款和条件,但它不起作用.有人可以帮我弄这个吗.

视图

<div class="form-group{{ $errors->has('terms') ? ' has-error' : '' }}">
  <label>
    <input type="checkBox" class="form-control" name="terms" value="{{ old('terms') }}" /> Agree with the terms and conditions
  </label>

  <div class="col-md-4">
    @if ($errors->has('terms'))
     <span class="help-block">
       <strong>{{ $errors->first('terms') }}</strong>
     </span>
    @endif
  </div>
</div>

AuthController

protected function validator(array $data)
    {
        return Validator::make($data, [
            'name' => 'required|max:255',
            'company' => 'required|max:255',
            'email' => 'required|email|max:255|unique:users',
            'telephone' => 'required|max:255',
            'password' => 'required|min:6|confirmed',
            'g-recaptcha-response' => 'required|captcha',
            'terms' => 'required'
          ]);

    }

解决方法:

更改以下行:

<input type="checkBox" class="form-control" name="terms" value="{{ old('terms') }}" /> Agree with the terms and conditions

<input type="checkBox" class="form-control" name="terms" value="1" /> Agree with the terms and conditions

因为我们维护textBox,textarea等的旧值,以防输入的旧值未通过验证,但在您的情况下复选框需要静态值,即1或任何值.
如果未选择显示错误,但其值保持不变.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐