© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
4 replies
Itachi

How showing textfield in page

hello sir,
in my filament project i create a training session page with
php artisan make:filament-page traingingsession
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')
            ]);
    }
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')
           
        ];
    }
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 }}
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Datepicker textfield
FilamentFFilament / ❓┊help
3y ago
Overflow textfield in view modals
FilamentFFilament / ❓┊help
16mo ago
Textfield with masking in Repeater
FilamentFFilament / ❓┊help
3y ago
Default data not showing in page
FilamentFFilament / ❓┊help
3y ago