Skip to content

Commit

Permalink
style(admin): 调整修改个人资料表单页的样式
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaiyuxin103 committed Jan 11, 2025
1 parent 72c5567 commit 0d62bc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Filament/Pages/EditProfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -64,6 +62,8 @@ public function form(Form $form): Form
Forms\Components\RichEditor::make('introduction')
->columnSpanFull()
->label(trans('fields.introduction')),
]);
])
->columns()
->inlineLabel(false);
}
}

0 comments on commit 0d62bc0

Please sign in to comment.