{% if is_defined('view.first_field_with_errors') and view.first_field_with_errors %}
The form field {{ view.first_field_with_errors }}
has errors,
but its error message is not being displayed, possibly because
you did not include the field in the page.
There are 2 ways to fix this:
formfield
tag, e.g.
{% ibis_tag_lblock %}
formfield "{{ view.first_field_with_errors }}"
{% ibis_tag_rblock %}
formfield
but are instead
writing the raw HTML for the form input,
remember to include
{% ibis_tag_lvar %}
form.{{ view.first_field_with_errors }}.errors
{% ibis_tag_rvar %}
somewhere in your page's HTML.
The following other field(s) have the same issue:
{{ field_with_error }}
While debugging, you can display all errors in the form with
{% ibis_tag_lvar %}
form.errors
{% ibis_tag_rvar %}
.