```js const inputs = [ { fieldInput: { "type": "input", "inputType": "text", "inputName": "first_name", "label": "First Name", "model": "first_name", "id": "first_name", "placeholder": "Your first name", "helpLabel": "help the label" }, disabled: false, value: 'my first name' }, { fieldInput: { "type": "input", "inputType": "text", "inputName": "last_name", "label": "Last Name", "model": "last_name", "id": "last_name", "placeholder": "Your last name", "helpLabel": "help the label" }, disabled: true, value: 'my last name' } ]

```