description in html form code example
Example 1: posting with forms html
<form method="POST" action="INSERT WHERE YOU'RE SENDING THE DATA TO HERE">
<input type="text" name="INSERT DATA KEY NAME HERE"> <!-- You don't have to have this line -->
</form>
Example 2: form::textarea
{!! Form::textarea('placeOfDeath',null,['class'=>'form-control', 'rows' => 2, 'cols' => 40]) !!}