{% load i18n %}
{% load mtp_common %}
{% load send_money %}
{# copy of govuk-frontend/components/error-summary.html from mtp-common including additional content #}
{% if form.errors %}
{{ form.error_summary_title|default:_('There was a problem') }}
{% get_form_errors form as errors %}
{% for error in errors.non_field %}
{{ error }}.
{% endfor %}
{% if errors.non_field|prisoner_details_not_found %}
{% trans 'What to do:' %}
{% trans 'Check you’ve entered the details correctly' %}
{% trans 'Ask the person in prison to check with their wing officer that your details match theirs' %}
{% trans 'If your details are wrong, use the new details you’ve been given' %}
{% trans 'If the prison details are wrong, the person in prison needs to submit a general application to the Offender Management Unit querying their details' %}
{% endif %}
{% for field, field_errors in errors.field_specific.items %}