Skip to content

Commit

Permalink
fix code review
Browse files Browse the repository at this point in the history
  • Loading branch information
gheorghelupu17 committed Sep 23, 2024
1 parent 86d2ebd commit 4c9177c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/Filament/Resources/OrganisationResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,20 +206,20 @@ public static function form(Form $form): Form
->schema([
TextInput::make('contact_person_in_teams.first_name')
->label(__('organisation.field.contact_person_in_teams_first_name'))
->maxLength(50),
->maxLength(100),

TextInput::make('contact_person_in_teams.last_name')
->label(__('organisation.field.contact_person_in_teams_last_name'))
->maxLength(50),
->maxLength(100),

TextInput::make('contact_person_in_teams.role')
->label(__('organisation.field.role'))
->columnSpanFull()
->maxLength(50),
->maxLength(200),

TextInput::make('contact_person_in_teams.email')
->label(__('organisation.field.email'))
->maxLength(50)
->maxLength(200)
->email(),

TextInput::make('contact_person_in_teams.phone')
Expand Down

0 comments on commit 4c9177c

Please sign in to comment.