Support the ongoing development of Laravel.io →
posted 10 years ago
Forms

I can't place checkbox and "Remember me" in one line using laravel and bootstrap. There is a line break between checkbox and "Remember me" but I don't want that line break. please help me. My code:

{{Form::open(['route'=>'sessions.store','class'=>'form-horizontal'])}}

<div class = 'form-group'>
    {{Form::label('email','Email',['class'=>'col-sm-3 control-label'])}}
    <div class="col-sm-4">
        {{Form::email('email',null,['class'=>'form-control'])}}
        {{$errors->first('email')}}
    </div>
</div>

<div class = 'form-group'>
    {{Form::label('password','Password',['class'=>'col-sm-3 control-label'])}}
    <div class="col-sm-4">
        {{Form::password('password',['class'=>'form-control'])}}
        {{$errors->first('password')}}
    </div>
</div>

<div class = 'form-group'>
    <div class='col-sm-offset-3 col-sm-4'>
        {{Form::checkbox('remember-me',1,null,['class'=>'checkbox'])}}
        {{Form::label('remember-me','Remember me')}}
    </div>
</div>

<div class = 'form-group'>
    <div class="col-sm-offset-3 col-sm-4">
        {{Form::submit('Login',['class'=>'btn btn-default'])}}
    </div>
</div>

{{Form::close()}}

Last updated 2 years ago.
0

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

Last updated 2 years ago.
0

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.

Last updated 2 years ago.
0

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.

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

tofah tofah Joined 20 Nov 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.