I have a form and this is the code for on of the input fields:
<input type="text" name="user[job]" ng-model="updateAccountForm.user.job" ng-init="updateAccountForm.user.job = '{{user.job}}'" value="{{user.job}}" />
The value is showing correctly. The problem is the following: If I edit the field the value is sent correctly in the PUT request. If I do not edit the form field then the value that is sent is literally {{user.job}}
What could be wrong with my code?