public static function form(Form $form): Form
{
return $form
->schema([
Forms\Components\Section::make()
->schema([
Forms\Components\TextInput::make('year')
->required()
->numeric(),
Forms\Components\TextInput::make('rate_first_tier')
->required()
->numeric(),
Forms\Components\TextInput::make('rate_second_tier')
->required()
->numeric(),
Forms\Components\TextInput::make('rate_third_tier')
->required()
->numeric(),
Forms\Components\TextInput::make('ex_tax')
->required()
->numeric(),
])
->columns(2)
]);
}
Images are before and after.