It just means that you need to create a new service provider and then add the component in the boot method, and finally register the service provider in your application
php artisan make:provider FormServiceProvider
Then update the boot method of that class
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class FormServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
// Register the form components
Form::component('bsText', 'components.form.text', ['name', 'value', 'attributes']);
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
// We have nothing to register, so we leave this blank
}
}
And finally register the service provider in config/app.php
'providers' => [
// Other providers
App\Providers\FormServiceProvider::class,
],