© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
6 replies
shafiqruslan

How to make a wizard full width?

Below is my code:
                Forms\Components\Wizard::make([
                    Forms\Components\Wizard\Step::make('Authentication')
                        ->schema([
                            Forms\Components\TextInput::make('name')
                                ->required()
                                ->maxLength(255),
                            Forms\Components\TextInput::make('email')
                                ->email()
                                ->required()
                                ->maxLength(255),
                            Forms\Components\TextInput::make('password')
                                ->password()
                                ->maxLength(255)
                                ->dehydrated(fn ($state) => filled($state))
                                ->required(fn (string $context): bool => $context === 'create'),
                            Forms\Components\Select::make('roles')
                                ->preload()
                                ->multiple()
                                ->relationship('roles', 'name')
                                ->columnSpan('full'),
                        ]),
                Forms\Components\Wizard::make([
                    Forms\Components\Wizard\Step::make('Authentication')
                        ->schema([
                            Forms\Components\TextInput::make('name')
                                ->required()
                                ->maxLength(255),
                            Forms\Components\TextInput::make('email')
                                ->email()
                                ->required()
                                ->maxLength(255),
                            Forms\Components\TextInput::make('password')
                                ->password()
                                ->maxLength(255)
                                ->dehydrated(fn ($state) => filled($state))
                                ->required(fn (string $context): bool => $context === 'create'),
                            Forms\Components\Select::make('roles')
                                ->preload()
                                ->multiple()
                                ->relationship('roles', 'name')
                                ->columnSpan('full'),
                        ]),
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

make tab full width?
FilamentFFilament / ❓┊help
17mo ago
Full width FilamentPHP
FilamentFFilament / ❓┊help
2y ago
Full Height Modal / Wizard
FilamentFFilament / ❓┊help
2y ago