在图像验证失败后,我正在努力显示错误。似乎很奇怪,但是我不知道为什么我可以dd($errors->first('profile_picture)
并且有效(我看到错误),但是我不能{{ $errors->first('profile_picture) }}
。我正在使用默认的Laravel代码来显示错误,例如在电子邮件字段下:
@if ($errors->has('email'))
<span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('email') }}</strong>
</span>
@endif
只需将email
替换为profile_picture
。无法理解会发生什么。
答案 0 :(得分:0)
对不起。错误消息得到display: none
的原因是神秘的。我在自定义CSS中将其入侵到display: block
,并且可以正常工作。 Idk ...还是谢谢你:)