This isn’t typically used for a brand new server

This commit is contained in:
Lance Pioch 2024-06-02 01:22:12 -04:00
parent 4a3bdd78ef
commit 5b6c462943

View File

@ -285,29 +285,6 @@ class CreateServer extends CreateRecord
}) })
->required(), ->required(),
Forms\Components\ToggleButtons::make('skip_scripts')
->label('Run Egg Install Script?')
->default(false)
->columnSpan([
'default' => 1,
'sm' => 1,
'md' => 1,
'lg' => 1,
])
->options([
false => 'Yes',
true => 'Skip',
])
->colors([
false => 'primary',
true => 'danger',
])
->icons([
false => 'tabler-code',
true => 'tabler-code-off',
])
->inline()
->required(),
Forms\Components\Textarea::make('startup') Forms\Components\Textarea::make('startup')
->hintIcon('tabler-code') ->hintIcon('tabler-code')