{!! Form::text('name', null, ["placeholder" => "Nom", "class" => "form-control"]) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::text('url', null, ["placeholder" => "https://www.cnp.sn", "class" => "form-control"]) !!}
@if ($errors->has('url'))
{{ $errors->first('url') }}
@endif