{!! Form::text('titre', null, ["placeholder" => "Titre", "class" => "form-control"]) !!} @if ($errors->has('titre')) {{ $errors->first('titre') }} @endif
{!! Form::text('lien', null, ["placeholder" => "https://www.cnp.sn", "class" => "form-control"]) !!} @if ($errors->has('lien')) {{ $errors->first('lien') }} @endif
{!! Form::file('image', null, ["class" => "form-control", "required"]) !!} @if ($errors->has('image')) {{ $errors->first('image') }} @endif