I am dynamically creating multiple forms using ng-repeat, and i need to validate each one independently but it seems that I cannot dynamically set a form name and then validate it dynamically.
<div ng-repeat="quote in quotes" ng-form="quote{{$index}}" novalidate>
<div ng-if="quote$index.$invalid">INVALID</div>
</div>
How would i validate forms separately that are dynamically generated?