forms textarea code example
Example 1: html textarea
<textarea id="txtid" name="txtname" rows="4" cols="50" maxlength="200">
A nice day is a nice day.
Lao Tseu
</textarea>
Example 2: textarea
<textarea></textarea>
Example 3: html input textarea
Check this:
https://codepen.io/DevLorenzo/pen/wvzNPKz
Example 4: form::textarea
{!! Form::textarea('placeOfDeath',null,['class'=>'form-control', 'rows' => 2, 'cols' => 40]) !!}