laravelでバリデーションを用いてエラーメッセージを出したいです
laravelでバリデーションを用いてエラーメッセージを出そうと思ったのですが、15行目の「@foreach($errors->all() as error)」の部分でエラーが出てしまいました。
どこが間違っているのでしょうか?
エラーメッセージ syntax error, unexpected ')', expecting '[' (View: /workspace/laravel/resources/views/hello/index.blade.php)
該当のソースコード
@extends("layouts.helloapp")
@section("title", "Index")
@section("menubar")
@parent
インデックスページ
@endsection
@section("content")
<p>{{$msg}}</p> @if(count($errors)>0) <div> <ul> @foreach($errors->all() as error) <li>{{$error}}</li> @endforeach </ul> </div> @endif<table> <form action="/hello" method="post"> {{csrf_field()}} <tr> <th>name:</th><td><input type="text" name="name" value="{{old('name')}}"></td> </tr> <tr> <th>mail:</th><td><input type="text" name="mail" value="{{old('mail')}}"></td> </tr> <tr> <th>age:</th><td><input type="text" name="age" value="{{old('age')}}"></td>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/09 11:01