<div class="form-group {{ $errors->has('title') ? ' has-error' : '' }}">
<label class="control-label col-md-3">Title: <i class="required">*</i></label>
<div class="col-md-9">
{!! Form::text('title', null , ['class'=>'form-control', 'placeholder'=>'Questionnaire template title...', 'autocomplete'=>'off']) !!}
</div>
</div>
<div class="form-group {{ $errors->has('description') ? ' has-error' : '' }}">
<label class="control-label col-md-3">Description: <i class="required">*</i></label>
<div class="col-md-9">
{!! Form::textarea('description', null , ['class'=>'form-control wysihtml5', 'placeholder'=>'Questionnaire template short description here...', 'autocomplete'=>'off']) !!}
</div>
</div>