If I have the following:
<form
id="registration"
name="registration"
method="POST"
>
<input
type="text"
name="first_name"
id="first-name"
ng-model="registration.first_name"
placeholder="First name"
/>
When my form displays, fields configured as above end up having [Object object] inside of them for their initial value.
What am I doing wrong here and what's the correct way to get two-way binding inside of a form?