How showing textfield in page

hello sir,
in my filament project i create a training session page with
php artisan make:filament-page traingingsession
command
now in that page i want a textfield and textarea and their show data like the given picture for this i write
public static function form(Form $form): Form
    {
        return $form
            ->schema([

                Forms\Components\TextInput::make('video'),
                Forms\Components\TextInput::make('text'),
                Forms\Components\Textarea::make('description')
            ]);
    }

but it now work
also i try
protected function getFormSchema(): array
    {
        return [
            Forms\Components\TextInput::make('video'),
                Forms\Components\TextInput::make('text'),
                Forms\Components\Textarea::make('description')
           
        ];
    }

this function but it was not work
please give me some solution
Screenshot_from_2023-11-03_10-32-19.png
Solution
Inside the blade file of the page add this {{ $this->form }}
Was this page helpful?