Laravelでバリデーションエラーを表示する方法

1845 回閲覧されました
みなさんこんにちは、jonioです。 今回はLaravelでバリデーションエラーに引っかかった場合の表示方法について解説します。宣伝
無料で使えるLaravelの学習サイトを作りました。 ユーザー登録をしてぜひ利用して下さい。 サイトはここから。バリデーションエラーはこういう表示
入力内容が正しくない時に画面上部に表示されるやつです。(↓の赤枠)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if($errors->any()) | |
//エラーの内容を表示 | |
@endif |
エラーの表示
今回は全てのバリデーションエラーを表示しますが「$errors->all()」を使います。 具体的な書き方は↓です。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if($errors->any()) | |
<ul> | |
@foreach($errors->all() as $error) | |
<li>{{$error}}</li> | |
@endforeach | |
</ul> | |
@endif |