{% extends "contact-name.njk" %}
{% set title = 'What is the authorised person\'s name?' %}
{% set hintText = 'Enter the full name' %}

{% set errorMap = {
        'name': {
            'string.empty': { ref: '#name', text: 'Enter the name of the authorised person' },
            'string.pattern.base': { ref: '#name', text: 'Enter the name of the authorised person using only letters, spaces, the apostrophe, hyphen, full-stop or comma.' },
            'any.invalid': { ref: '#name', text: 'The name \'' +  payload.name + '\' has already been used, enter a unique name'  }
        }
    }
%}
