我在自定义注册表单中使用警报来获取唯一的电子邮件和电话,但它不起作用不工作的代码@if ($errors->has('email'))<span class="invalid-feedback" role="alert"><strong>{{ $errors->first('email') }}</strong></span>@endif@if ($errors->has('phone'))<span class="invalid-feedback" role="alert"><strong>{{ $errors->first('phone') }}</strong></span>@endif当我在下面的代码中使用它时它工作但它显示输入区域下方的所有错误,代码 @if($errors->has('email')) @foreach($errors->all() as $error) <li style="color:red">{{ $error }}</li> @endforeach @endif @if($errors->has('phone')) @foreach($errors->all() as $error) <li style="color:red">{{ $error }}</li> @endforeach @endif
1 回答
动漫人物
TA贡献1815条经验 获得超10个赞
尝试以下示例以显示单个错误
@if ($errors->any())
<label for="email" class="error">{{ $errors->first('email') }}</label>
@endif
@if ($errors->any())
<label for="phone" class="error">{{ $errors->first('phone') }}</label>
@endif
- 1 回答
- 0 关注
- 71 浏览
添加回答
举报
0/150
提交
取消