If there should be one alpha character at the beginning of the field, you can simply expand your regex to check it at the beginning of char:
/^[a-zA-Z][a-zA-Z0-9_]*$/
To require at least one alpha character without a specific position, simply use the following regular expression:
/^[a-zA-Z0-9_]*[a-zA-Z][a-zA-Z0-9_]*$/
source share