I validate my Blazor form input according to this pattern with ValidationMessageStore:
I then output ValidationMessage on each control.
BUT it is a long form so I also want to indicate to the user somewhere close to the submit button that there are some errors that need to be fixed, and that's why we didn't accept the input yet.
I know I can use a ValidationSummary but I don't want to repeat all possible errors, just have a note.
ValidationMessageStore obviously holds all messages in an internal collection, but they are not accessible. Is it possible to somehow check if there are ANY error messages?