Skip to content

Commit

Permalink
Update EmailAliasResource.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bobimicroweber committed Sep 19, 2024
1 parent 9d79bbe commit a698301
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,16 @@ public static function form(Form $form): Form
return $form
->schema([

Forms\Components\TextInput::make('forward')
Forms\Components\TextInput::make('address')
->label('Forward')
->helperText('To create a catch-all use an "*" as alias.')
->required(),

Forms\Components\Select::make('domain')
->options(Domain::get()->pluck('domain', 'domain')->toArray()),

Forms\Components\Textarea::make('to')
Forms\Components\Textarea::make('goto')
->label('To')
->columnSpanFull()
->placeholder('Accepts multiple targets, one entry per line.')
->cols(20)
Expand Down

0 comments on commit a698301

Please sign in to comment.