中添加条款和条件

中添加条款和条件

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

看法

<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>

身份验证 Controller
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

因为如果输入的旧值未通过验证,我们会保留文本框、文本区域等的旧值,但在您的情况下,复选框需要静态值,即 1 或任何值。
如果未选择它,则显示错误,但其值保持不变。

关于php - Laravel 5.2 在注册中添加条款和条件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40647266/

10-12 04:59