How to set width of registration page
I've created a custom page for the registration process. I want the content to be wider. The getMaxContentWidth function isn't doing anything. So, the white block needs to become wider.
4 Replies
""
You probably need to overwrite the view file of the guest layout or add some CSS to overwrite it.
No need to overwrite the view, I did it using protected ?string $maxWidth = '3xl';
and you don't need to implement HasForms, as SimplePage alrready implements it
Wizard::make([
Wizard\Step::make('Personal')
->schema([
// ...
]),
Wizard\Step::make('Company')
->schema([
// ...
]),
Wizard\Step::make('Account')
->schema([
// ...
]),
]) ->columnSpan('full')