{!! Form::date('date_debut', null, ["class" => "form-control", "required"]) !!}
@if ($errors->has('date_debut'))
{{ $errors->first('date_debut') }}
@endif
{!! Form::time('heure_debut', null, ["class" => "form-control", "required"]) !!}
@if ($errors->has('heure_debut'))
{{ $errors->first('heure_debut') }}
@endif
{!! Form::date('date_fin', null, ["class" => "form-control"]) !!}
@if ($errors->has('date_fin'))
{{ $errors->first('date_fin') }}
@endif
{!! Form::time('heure_fin', null, ["class" => "form-control"]) !!}
@if ($errors->has('heure_fin'))
{{ $errors->first('heure_fin') }}
@endif