This commit is contained in:
Masroor Ehsan 2025-01-29 18:07:20 +06:00
parent dc2d48cdb0
commit 93842ba548

View File

@ -26,12 +26,14 @@ public static function form(Form $form): Form
return $form return $form
->schema([ ->schema([
Toggle::make('is_active') Toggle::make('is_active')
->label('Active?')
->required(), ->required(),
TextInput::make('server_name') TextInput::make('server_name')
->required() ->required()
->maxLength(255), ->maxLength(255),
Select::make('geo_code') Select::make('geo_code')
->required() ->required()
->label('GEO Location')
->options(GeoLocation::select()), ->options(GeoLocation::select()),
TextInput::make('host') TextInput::make('host')
->required() ->required()