<h3 class="styleguide-headline">Text Area</h3>
<div class="form-group row text required flight_calculator_from">
<label class="label-col col-form-label number required"
for="flight_calculator_from">
Text Area
<abbr title="required">*</abbr>
</label>
<div class="input-wrapper wrapper-col wrapper-col-full-width">
<textarea class="form-control"
placeholder="Add important information here"
name="flight_calculator[from]"></textarea>
</div>
</div>
<div class="py-3"></div>
<div class="form-group row text required flight_calculator_from">
<label class="label-col col-form-label number required"
for="flight_calculator_from">
Text Area with Hint <abbr title="required">*</abbr>
</label>
<div class="input-wrapper wrapper-col wrapper-col-full-width">
<textarea class="form-control"
placeholder="Add important information here"
name="flight_calculator[from]"></textarea>
<small class="form-text text-muted">this is a hint</small>
</div>
</div>
<div class="py-3"></div>
<div class="form-group row text required flight_calculator_from form-group-invalid">
<label class="label-col col-form-label number required"
for="flight_calculator_from">
invalid Text Area
<abbr title="required">*</abbr>
</label>
<div class="input-wrapper wrapper-col wrapper-col-full-width">
<textarea class="form-control is-invalid"
placeholder="Add important information here"
name="flight_calculator[from]"></textarea>
<div class="invalid-feedback">can't be blank</div>
</div>
</div>