html form textbox code example
Example 1: how to collect input textbox in html
<label for="name">Name:</label>
<input type="text" id="name"><br><br>
Example 2: form::textarea
{!! Form::textarea('placeOfDeath',null,['class'=>'form-control', 'rows' => 2, 'cols' => 40]) !!}