LaravelでCheckBoxのValidationが上手く掛かりません。
具体的には、規約への承認のチェックボックスを動作させたいと考えているのですが、色々試しているのですが上手く動きません。
ロジック記述部位
PHP
1 <form class="form-horizontal" method = "post" action="{{ url('xxxxxxxx') }}"> 2 {!! csrf_field() !!} 3 <label for="rule_agree"> 4 <input type="checkbox" id="rule_agreement" name="rule_agreement" value="false"> 上記の利用規約に同意しました<span class="required">※必須</span><br> 5 </label> 6 @if($errors->has('rule_agreement')) 7 <div class="error"> 8 <p style="text-align: left; color: red;">{{ $errors->first('rule_agreement') }}</p> 9 </div> 10 @endif 11 <input type="submit" value="無料登録する"></input> 12 </form>
Validationチェック部位
PHP
1 $this->validate($request, [ 2 'rule_agreement' => 'accepted' 3 ] 4
何処が悪いのでしょうか?
チェックボックスのValidationにAcceptedが使えないのでしょうか……?
有識者の方、ご教示いただきたくよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー