JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="animateApp">
<div ng-controller="filterController">
<form novalidate name="myForm" ng-init="profiles=[{name:'raj',std:10},{name:'kamal',std:11}]">
<div ng-repeat="p in profiles">
Name:<input type="text" ng-model="p.name"/>
Std:<input type="text" ng-model="p.std"/>
</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){
}