Validation Rules only on create
Is it possible to have validation rules only apply in the create step but not on later editing?
Solution:Jump to solution
use operation
```php
TextInput::make('title')
->required(fn (string $operation) => $operation === 'create')...
2 Replies
Solution
Perfect, thanks!