I'm looking to add a blank titled label field to a laravel form. However when I leave the "title" field blank and chose a "for" input it automatically assigns this to the label title.
{{ Form::label('name', '', array('class' => 'label-input', 'id' => 'name')) }}
I've tried leaving the field blank and null, but it automatically fetches the "for" label. This is the output:
<label for="Name" class="label-input" id="name">Name</label>
Thank you in advance,
Dan