How do I name a form inside ng-repeat with a dynamic name?
You can just do:
EDIT:
You can use ng-init as well, like so:
ng-init
//few form elements
If it's just to apply a class based on validity of the form, then you could apply styling to automatically added classes, such as: ng-valid:
ng-valid
.ng-valid { background-color: green; }