oauth provider email_claim required

This commit is contained in:
xiaomlove
2025-05-02 14:22:35 +07:00
parent 7b4a0d2fc5
commit cd6ac587c2
6 changed files with 20 additions and 13 deletions

View File

@@ -41,8 +41,8 @@ class ClientResource extends Resource
{
return $form
->schema([
Forms\Components\TextInput::make('name')->label(__('label.name')),
Forms\Components\TextInput::make('redirect')->label(__('oauth.redirect')),
Forms\Components\TextInput::make('name')->label(__('label.name'))->required(),
Forms\Components\TextInput::make('redirect')->label(__('oauth.redirect'))->required(),
Forms\Components\Radio::make('skips_authorization')
->options(self::getYesNoOptions())
->inline()