I am trying to achieve this view by looping through 2 arrays 
but from the ng-repeats that I'm using, I get this view

This is the code that I have right now
$scope.properties = ["First name", "Last name"];
$scope.labels = ["john", "doe"];
//jade
.col-md-12
.col-md-6(ng-repeat="property in properties")
label {{ property }}
.col-md-6(ng-repeat="label in labels")
{{ label }}