Hi there,
Does removing the class from the checkbox do the trick? So the line would read:
{{Form::checkbox('remember-me',1,null)}}
With kind regards,
Mark
I think you are using the wrong template for checkbox.
<div class="form-group">
<div class="checkbox">
{{Form::checkbox('remember-me',1,null,['class'=>'checkbox'])}}
</div>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Remember Me
</label>
</div>
should do the trick.
This is how the Remember Me bit of the login form in my app is written:
<div class="form-group">
{{ Form::label('rememberme', 'Remember me') }}
{{Form::checkbox('rememberme', null)}}
</div>
Hope that's of some help.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community