# Form Item

`st-form-item` is a layout wrapper for form fields. It ensures labels, controls, and error messages have consistent spacing and that `st-form-errors` can span the full available width of the form row.

## Usage

```html
<st-form-item>
  <st-input formControlName="controlInput" label="Input" name="name" placeholder="placeholder" [parentForm]="inputForm"></st-input>
  <st-form-errors [parentForm]="inputForm" formField="controlInput" />
</st-form-item>
```

## Notes

- Place `st-form-errors` as a sibling (not inside) the input/field component.
- `st-form-item` provides a consistent vertical gap and full-width error line.
