<!-- title From Input -->
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
{!! Form::label('title', 'Enter the title of the post:') !!}
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Enter the title of the post']) !!}
</div>
</div>
<!-- body From Input -->
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
{!! Form::label('body', 'Enter the body of the post:') !!}
{!! Form::textarea('body', null, ['class' => 'form-control', 'rows' => '20' , 'placeholder' => 'Enter the body of the post']) !!}
</div>
</div>
<!-- tagsList From Input -->
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
{!! Form::label('tagList', 'Select an Option:') !!}
{!! Form::select('tagList[]', $tags, null, ['id' => 'tags', 'class' => 'form-control', 'multiple']) !!}
</div>
</div><br/>
<!-- Submit Button -->
<div class="row">
<div class="form-group col-xs-12">
{!! Form::submit($submitButton, ['class' => 'btn btn-default']) !!}
</div>
</div>
The tag field is optional