Skip to content

Commit

Permalink
Merge pull request #308 from alexmanase/fix-305
Browse files Browse the repository at this point in the history
Fix validation for email
  • Loading branch information
gheorghelupu17 authored Nov 19, 2024
2 parents 3ccdd0a + ba83ffa commit 2a2d523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Filament/Organizations/Resources/UserResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public static function getSchema(): array
TextInput::make('email')
->label(__('user.labels.email'))
->email()
->unique()
->unique(ignoreRecord: true)
->required(),

TextInput::make('phone_number')
Expand Down

0 comments on commit 2a2d523

Please sign in to comment.