``` Forms\Components\DateTimePicker::make('start_date') ->label('Start Date') ->required() ->rules([ fn (): Closure => function (string $attribute, $value, Closure $fail) { if ($value && Carbon::parse($value)->lt(Carbon::today())) { $fail('The :attribute must be today or later.'); } }, ]),```