There is a mask that is set by input when the page loads.
$phone.mask("0299999999", {string: '{{ form_label(form.phone) }}'})
After sending the data, an attribute is put to this input.
$phone.attr('readonly',true);
Why is it possible to see that readonly = 'readonly' in the console by looking through the input code and you can still edit the field?