© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
1 reply
Bleak (GDB Founder)

Add Tenant Profile Page To Cluster?

hi does anyone know how i can add the tenant profile page to a cluster?
it seems this doesnt work
<?php

namespace App\Filament\AgencySettings\Clusters\General\Pages;

use App\Filament\AgencySettings\Clusters\General;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Form;
use Filament\Pages\Tenancy\EditTenantProfile;

class AgencyProfile extends EditTenantProfile
{
  protected static ?string $navigationIcon = 'heroicon-o-document-text';
  protected static string $view = 'filament.agency-settings.clusters.general.pages.agency-profile';
  protected static ?string $cluster = General::class;

  public static function getLabel(): string
  {
    return 'Agency profile';
  }

  public function form(Form $form): Form
  {
    return $form
      ->schema([
        TextInput::make('name'),
// ...
      ]);
  }
}
<?php

namespace App\Filament\AgencySettings\Clusters\General\Pages;

use App\Filament\AgencySettings\Clusters\General;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Form;
use Filament\Pages\Tenancy\EditTenantProfile;

class AgencyProfile extends EditTenantProfile
{
  protected static ?string $navigationIcon = 'heroicon-o-document-text';
  protected static string $view = 'filament.agency-settings.clusters.general.pages.agency-profile';
  protected static ?string $cluster = General::class;

  public static function getLabel(): string
  {
    return 'Agency profile';
  }

  public function form(Form $form): Form
  {
    return $form
      ->schema([
        TextInput::make('name'),
// ...
      ]);
  }
}

Thanks in advance!
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

How to add tenant edit profile to a cluster?
FilamentFFilament / ❓┊help
9mo ago
Display Tenant Profile Page
FilamentFFilament / ❓┊help
2y ago
How to add custom actions to a tenant profile page?
FilamentFFilament / ❓┊help
2y ago
Use cluster for user profile page
FilamentFFilament / ❓┊help
15mo ago