diff --git a/app/Filament/Pages/EditProfile.php b/app/Filament/Pages/EditProfile.php index 505fc24..8692eef 100644 --- a/app/Filament/Pages/EditProfile.php +++ b/app/Filament/Pages/EditProfile.php @@ -41,8 +41,6 @@ public function form(Form $form): Form Forms\Components\TextInput::make('phone') ->maxLength(255) ->label(trans('fields.phone')), - $this->getPasswordFormComponent(), - $this->getPasswordConfirmationFormComponent(), Forms\Components\FileUpload::make('avatar') ->image() ->imageEditor() @@ -64,6 +62,8 @@ public function form(Form $form): Form Forms\Components\RichEditor::make('introduction') ->columnSpanFull() ->label(trans('fields.introduction')), - ]); + ]) + ->columns() + ->inlineLabel(false); } }