I have a form:
Please see demo below
You need to change name of your form from 'placeThis' to something else like 'placeThisForm'
otherwise you overwriting $scope.placeThis
values set in your controller.
var app = angular.module('app', []);
app.controller('homeCtrl', function($scope) {
$scope.placeThis = {
target: "One",
name: "Tim"
};
});