I am using Laravel Collective/html Form to create my views in Laravel, and I would want a 3 column view, I cant figure out to remove the spaces between one input to the other, I would like to have a space between the inputs This my form code
<div class="container-fluid"><!-- Row 1 -->
<div class="col-lg-4" id="userFormColumn2">
<div class="form-group required">
{!! Form::label('reg_no', 'Vessel Reg No:', ['class' => 'control-label']) !!}
{!! Form::text('reg_no', old('reg_no'), ['class' => 'form-control input-normal','placeholder' => 'Vessel RegNo']) !!}
</div>
</div>
<div class="col-lg-4" id="userFormColumn2">
<div class="form-group required ">
{!! Form::label('captain_name', 'Captain Name:', ['class' => 'control-label']) !!}
{!! Form::text('captain_name', old('captain_name'), ['class' => 'form-control input-normal','placeholder' => 'Captain Name']) !!}
</div>
</div>
<div class="col-lg-4" id="userFormColumn2">
<div class="form-group required">
{!! Form::label('vessel_name', 'Vessel Name:', ['class' => 'control-label']) !!}
{!! Form::text('vessel_name', old('vessel_name'), ['class' => 'form-control input-normal','placeholder' => 'Vessel Name']) !!}
</div>
</div>
</div>
Image See the current view