Bump No one had overriden BaseEditProfile page usage in multi tenant panels? Page: ```php components([ Section::make('Personal Information') ->components([ FileUpload::make('avatar_url') ->image() ->avatar() ->imageEditor() ->circleCropper() ->moveFiles() ->disk('public') ->directory('avatars') ->visibility('public') ->getUploadedFileNameForStorageUsing(fn ($file) => (string) Str::uuid() . '.' . $file->getClientOriginalExtension()) ->deleteUploadedFileUsing(function ($file, $record) { if ($record && $record->avatar_url && Storage::disk('public')->exists($record->avatar_url)) { Storage::disk('public')->delete($record->avatar_url); } }) ->helperText('Add your avatar so people can easily recognize you.'), $this->getNameFormComponent() ->label('Full name') ->columnSpanFull() ->helperText('Your full name'), $this->getEmailFormComponent() ->label('Email address') ->columnSpanFull() ->helperText('Email used to login into the platform.'), ]) ->collapsible(), Section::make('Password') ->components([ $this->getPasswordFormComponent(), $this->getPasswordConfirmationFormComponent(), $this->getCurrentPasswordFormComponent(), ]) ->collapsible(), ]); } } ``` In panel provider: `->profile(page: EditProfile::class, isSimple: false)`