I added other password rules using opts inside the Program.cs file. Only one password rule can't be defined here, which is that the password has to start with a letter. Right now, it doesn't care if the password starts with a number or a letter.
services.Configure<IdentityOptions>(opts => {
opts.Password.RequiredLength = 8;
opts.Password.RequireLowercase = true;
# });
How can I add this password policy using C# and ASP.NET Core MVC 6?
Would it help if I use opts.Password.RequireNonLetterOrDigit?