attr([
'class' => ['array-input', $field->get('associative') ? 'array-input-associative' : ''],
'id' => $field->name(),
'data-name' => $field->formName()
]) ?>>
value() ?: ['' => ''] as $key => $value): ?>
get('associative')): ?>
attr([
'type' => 'text',
'class' => 'array-input-key',
'value' => $key,
'placeholder' => $field->get('placeholder_key')
]) ?>>
attr([
'type' => 'text',
'class' => 'array-input-value',
'name' => $field->formName() . ($field->get('associative') ? '[' . $key . ']' : '[]'),
'value' => $value,
'placeholder' => $field->get('placeholder_value')
]) ?>>