# Form group

```html
@example
<div class="form-group">
    <label for="fg1" class="form-control-label">
        Name
    </label>
    <input type="text" id="fg1" name="fg1" class="form-control form-control--input">
</div>

<div class="form-group form-group--has-error">
    <label for="fg2" class="form-control-label">
        Name
    </label>
    <input type="text" id="fg2" name="fg2" class="form-control form-control--input">
    <div class="form-group__error">Lorem ipsum dolor sit amet</div>
</div>
```
