I'm having trouble finding a solution to this issue, as the form data is not being output.
var app = angular.module('myApp', []);
app.controller('mainController', ['$scope', function($scope) {
$scope.update = function(person){
$scope.club = angular.copy($scope.person);
};
}]);
Fiddle: http://jsfiddle.net/2ykgjmfs/