{!! Form::text('name', null, ["placeholder" => "Nom", "class" => "form-control", "required"]) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::file('file', ["class" => "form-control"]) !!} @if ($errors->has('file')) {{ $errors->first('file') }} @endif