diff --git a/app/Filament/Resources/DicomServerResource.php b/app/Filament/Resources/DicomServerResource.php index 7acf578..ade0914 100644 --- a/app/Filament/Resources/DicomServerResource.php +++ b/app/Filament/Resources/DicomServerResource.php @@ -26,12 +26,14 @@ public static function form(Form $form): Form return $form ->schema([ Toggle::make('is_active') + ->label('Active?') ->required(), TextInput::make('server_name') ->required() ->maxLength(255), Select::make('geo_code') ->required() + ->label('GEO Location') ->options(GeoLocation::select()), TextInput::make('host') ->required()