Custom Component Within Resource.
I've created a new resource with basic add, edit, and delete functionality. My question is: Is it possible to include a custom component within the resource, such as a custom form section or field?

public static function form(Form $form): Form
{
return $form
->schema([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255)
->live(onBlur: true)
->afterStateUpdated(fn (string $operation, $state, Forms\Set $set) => $operation === 'create' ? $set('slug', Str::slug($state)) : null),
Forms\Components\TextInput::make('slug')
->disabled()
->dehydrated()
->required()
->maxLength(255)
->unique(Category::class, 'slug', ignoreRecord: true),
Forms\Components\MarkdownEditor::make('description')
->columnSpan('full'),
Forms\Components\Toggle::make('is_visible')
->label('Visible to customers.')
->default(true),
]);
}