Finally, I found the soultion myself. I had tout add this to my package service provider register function:
$this->app->register(\Collective\Html\HtmlServiceProvider::class);
$loader = \Illuminate\Foundation\AliasLoader::getInstance();
$loader->alias('Form', '\Collective\Html\FormFacade');
and to add "laravelcollective/html": " 5.2.*" in the laravel installation where I'm developping my package and install in. It works now.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community