{!! Form::text('titre', null, ["class" => "form-control", "required"]) !!} @if ($errors->has('titre')) {{ $errors->first('titre') }} @endif
{!! 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
{!! Form::textarea('contenu', null, ["class" => "form-control", "id" => "contenu", "required"]) !!} @if ($errors->has('contenu')) {{ $errors->first('contenu') }} @endif
{!! Form::file('image', null, ["class" => "form-control", "required"]) !!} @if ($errors->has('image')) {{ $errors->first('image') }} @endif