The new @error directive was introduced in Laravel 5.8.13. So, instead of doing this:
// old
@if ($errors->has(\'emai
A solution would be doing the following:
You'll get something like this:
@if ($errors->has('email') && $submitted_form_identifier === $form_identifier)
{{ $errors->first('email') }}
@endif