JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="animateApp">
	<div ng-controller="filterController">
		<form novalidate name="myForm">				
			<div>
				Name:<input type="text" name="name[]" ng-model="profiles[0].name" ng-init="profiles[0].name = 'raj'"  />
				Std:<input type="text" name="std[]" ng-model="profiles[0].std" ng-init="profiles[0].std = '10'" />
			</div>
			<div>
				Name:<input type="text" name="name[]" ng-model="profiles[1].name" ng-init="profiles[1].name = 'kamal'"  />
				Std:<input type="text" name="std[]" ng-model="profiles[1].std" ng-init="profiles[1].std = '11'" />
			</div>
		</form>
		<input type="button" value="{{buttonLabel}}"  ng-init="buttonLabel = 'EDIT'" ng-model="buttonLabel" />
	</div>
</div>

JavaScript

var animateAppModule = angular.module('animateApp', []);
	function filterController($scope, $compile){
		$scope.profiles = [{},{}];
	}