Есть такое условие, но оно очень большое и всегда повторяется только одно свойство: firstName
<span *ngIf="registrationForm.controls.firstName.errors && registrationForm.controls.firstName.errors.required && registrationForm.controls.firstName.touched" class="clr-subtext">This field is required</span>
Этот кусок аналогичен куску выше, но уже с другим свойством: email
<span *ngIf="registrationForm.controls.email.errors && registrationForm.controls.email.errors.required && registrationForm.controls.email.touched" class="clr-subtext">This field is required</span>