diff --git a/src/registrar/templates/django/forms/label.html b/src/registrar/templates/django/forms/label.html
index 5aad3ccc4..3edaed1c9 100644
--- a/src/registrar/templates/django/forms/label.html
+++ b/src/registrar/templates/django/forms/label.html
@@ -21,25 +21,22 @@
{% endif %}
-->
-{% if widget.attrs.required %}
- {% for required_label in [
- "What is the name of the tribe you represent?",
- "Organization name",
- "Street address",
- "City",
- "State, territory, or military post",
- "Zip code",
- "First name / given name",
- "Last name / family name",
- "Title or role in your organization",
- "Email",
- "Phone"
- ] %}
- {% if field.label == required_label %}
- *
- {% endif %}
- {% endfor %}
+{% if widget.attrs.required and field.label in [
+ "What is the name of the tribe you represent?",
+ "Organization name",
+ "Street address",
+ "City",
+ "State, territory, or military post",
+ "Zip code",
+ "First name / given name",
+ "Last name / family name",
+ "Title or role in your organization",
+ "Email",
+ "Phone"
+] %}
+ *
{% endif %}
+
{{ label_tag }}>