I'd like to iterate over multiple input fields which are defined like this:
<input placeholder="Name" name="name" value="x.y">
<input placeholder="Description" name="description" value"x.z">
<!-- And more fields -->
or like this:
<input *ngFor="let x of y" name="{{x}}" value="{{x.y}}">
Now I want to interate over them, edit their value and give the edited values back to the input field.