{!! Form::text('name', null, ["placeholder" => "Nom", "class" => "form-control", "required"]) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::url('link', null, ["placeholder" => "http://wwww.exemple.com...", "class" => "form-control", "required"]) !!}
@if ($errors->has('link'))
{{ $errors->first('link') }}
@endif