Angular - binding data a form

I have a form that POST all data that is entered, when saving. But when I refresh the page, not all entries are bound to their respective input fields.

It is a bit strange because I am using ng-model on all the fields.

Here is an example of what doesn't bind:

<input name="full_name" ng-model="user.full_name" type="text" required></input>

and here is one that does bind:

<input name="address" ng-model="user.address" type="text" required></input>

Has anyone run into this issue, or notice something I may be missing?

It could be the browser remembering your last input in the forms. So after refreshing, the browser pre-populates the form and angular doesn't update the scope. There is a Google Groups thread about that. The best solution I found is to add autocomplete="off" in the inputs of the forms. Because after refreshing, there is no way angular could be remembering your last input in the form, unless you are using cookies for that wich you are obviously not.