Element ids are unique
Why it matters
An id must appear once per document. Duplicates break label-to-input pairing, in-page anchors, and any script that looks an element up by id, and every one of those failures is silent.
How to fix it
Rename the repeated ids so each is used once, or switch to a class where the value was never meant to be unique.
Check a page for this