<%= form_for(@document_verification,
as: :document_verification,
url: check_management_document_verifications_path) do |f| %>
<%= f.select(:document_type,
[[humanize_document_type("1"), 1],
[humanize_document_type("2"), 2],
[humanize_document_type("3"), 3]]) %>
<%= f.text_field :document_number %>
<% if Setting.force_presence_date_of_birth? %>
<%= render Shared::DateOfBirthFieldComponent.new(f) %>
<% end %>
<% if Setting.force_presence_postal_code? %>
<%= f.text_field :postal_code, aria: { describedby: "postal-code-help-text" } %>
<% end %>
<%= f.submit t("management.check"), class: "button" %>
<% end %>