I checked your source code like this
<div *ngFor="let box of boxs; let boxindex=index ">
<div>
<label>Boxs</label>
<input #input type="text" name="count[{{boxindex}}]" placeholder={{input.name}}>
</div>
</div>
on plunkr here , and it works, there must be something else taking out your name.
Edit
2.0.0, . , , , 2.0.0 angular let *ngFor, #
<div *ngFor="#box of boxs; #boxindex=index ">
plunkr
- 2.0.0 Angular.