sir_abdull
Standard Create Action in modal
Ok first for creating new user with an action..
If you want to do it from your list Page. you can add a getheaderActions() on the page class. Then use Filament\Actions\Action::make('new user'')
->form([
// create your form here using Filament\Forms
])
->action(
// your logic to create user here.
)
//you can chain further methods as required
8 replies