I'm trying to add a datepicker to my form and it drives me crazy, I tried everything I know, I've search for hours and all I got is nothing so first here is my blade code:
<div class="form-group">
{{ Form::label('date', 'Date:') }}
{{ Form::text('date', $payment->date, array('class' => 'datepicker','id' => 'datepicker')) }}
</div>
<script type="text/javascript">
$(function () {
$( "#datepicker" ).datepicker({
todayHighlight: true,
autoclose: true,
});
});
</script>
Second here is a picture that show us the white long space that I wont to remove.
I tried to edit the css file but as far as I get that the css file has nothing to do with this problem.. so please guys help me.
