In Twig template I check if a field has an error like this:
{% if form.points.get(\'errors\') is not empty %}
Is there any method like:
If you are using symfony 4, you can check errors existence with this code
{% if form_errors(registrationForm) %} {{ form_errors(registrationForm) }} {% endif %}