© 2026 Hedgehog Software, LLC
Unable to find component: [app.filament.app-panel.pages.edit-tenant-profile]
<?php namespace App\Filament\AppPanel\Pages; use Filament\Forms\Components\TextInput; use Filament\Forms\Form; use Filament\Pages\Tenancy\EditTenantProfile as BaseEditTenantProfile; class EditTenantProfile extends BaseEditTenantProfile { public static function getLabel(): string { return __('Tenant profiel'); } public function form(Form $form): Form { return $form ->schema([ TextInput::make('name') ->label(__('Naam')) ->required() ->unique(ignoreRecord: true), TextInput::make('avatar_url') ->label(__('Logo URL')) ->required() ->url(), ]); } }
App
App\Filament\AppPanel\Pages
App\Filament\App\Pages