Support the ongoing development of Laravel.io →
Blade Forms

Hello, i've created a form using blade's form builder: (don't be confused - it's german language)

{{ Form::open(array('url' => 'our/target/route', 'class' => 'form-register')) }}
			{{ Form::label('vname', 'Vorname:') }}
			{{ Form::text('vname') }}
			{{ Form::label('nname', 'Nachname:') }}
			{{ Form::text('nname') }}
			{{ Form::label('email', 'Deine E-Mail:') }}
			{{ Form::text('email') }}	
			{{ Form::label('emailver', 'E-Mail nochmal eingeben:') }}
			{{ Form::text('emailver') }}
			{{ Form::label('wohnort', 'Wohnort:') }}
			{{ Form::text('wohnort') }}
			{{ Form::label('geschlecht', 'Geschlecht:') }}
		    {{ Form::select('geschlecht', array(
		        'm'		=> 'Männlich',
		        'w'		=> 'Weiblich'
		    ), 'm') }}

If I assume I would have a table here, I would like to have all labels below each other on the left side and all input fields below each other on the right side. All of them should be correctly aligned. How can i solve this? Can i do it with the code above or should I create something like this:

<div class="table">
<div class="row>
<div class="cell">
			{{ Form::label('vname', 'Vorname:') }}
</div>
<div class="cell">
			{{ Form::text('vname') }}
</div>
</div>
<div class="row>
<div class="cell">
			{{ Form::label('nname', 'Nachname:') }}
</div>
<div class="cell">
			{{ Form::text('nname') }}
</div>
</div>
</div>

Thanks!

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

elbsurfer elbsurfer Joined 23 Mar 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.