I want to achieve this layout using Laravel Bootstraper:
My code looks like this:\[code\]<?php echo Form::control_group( Form::span6_text('something', 'Test 1'), Form::span6_text('something', 'Test 2'), Form::span6_text('something', 'Test 3') );?>\[/code\]The problem:Bootstraper wraps every form element in seperate \[code\]div.control-group\[/code\]and also, the third element is not showing up:
\[code\]<div class="control-group <input class=" span6"="" type="text" name="something" value="http://stackoverflow.com/questions/15592912/Test 3" id="something">"><input class="control-label span6" type="text" name="something" value="http://stackoverflow.com/questions/15592912/Test 1" id="something"><div class="controls"><input class="span6" type="text" name="something" value="http://stackoverflow.com/questions/15592912/Test 2" id="something"></div></div>\[/code\]Can something like this be done with Bootstraper and how?
Thanks!
Thanks!