I'm trying to add labels for inputs using v-for The inputs are working good(I'm creating them using v-for and it's creating them good), but When I'm trying to add labels to them the form becomes a big mess
*Integration Params is an object with key and value
This is the input creation:
<input v-for="(param, key, index) in integrationParams" v-model="integrationParams[key]" :id="key">
This is the label creation:
<label class="inputLabel" v-for="(labelFor, key, index) in integrationParams" :for="key">Please fill in {{ key }} param</label>
It actually does create 5 labels for example, but it comes out like this:

