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!
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community