Instead of;
await DataSeeder.SeedAsync(tenant.Id);
It is possible to pass pass and email:
await DataSeeder.SeedAsync(
new DataSeedContext(tenant.Id)
.WithProperty("AdminEmail", "[email protected]")
.WithProperty("AdminPassword", "123456")
);
Get these from UI and pass to the seeder.