我想在我的注册表验证表单中添加条款和条件,但它不起作用。有人可以帮我弄这个吗。
看法
<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>
Run Code Online (Sandbox Code Playgroud)
认证控制器
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'
]);
}
Run Code Online (Sandbox Code Playgroud)