<div class="form-item  ">
    <label for="some-id">
  Password
</label>

    <input type="text" id="password" />

    <div class="description">
        Form item description
    </div>
</div>
<div class="form-item {{ form_type }} {{ form_item }}">
  {% include '@form-label' with label %}
  {% include '@form-input' with input %}
  {% if description %}
    <div class="description">
      {{ description }}
    </div>
  {% endif %}
</div>
{
  "label": {
    "copy": "Form item label",
    "id": "input-id-1"
  },
  "input": {
    "placeholder": "Write something",
    "id": "input-id-1"
  },
  "description": "Form item description"
}

There are no notes for this item.