return Action::make('enter') ->model(Entry::class) ->label(__('foo')) ->color('success') ->size(ActionSize::Large) ->steps([ Step::make('Account Details')
Textarea::make('public_key') ->label(__('Public Key')) ->maxLength(255) ->rows(10) ->required() ->rules([new PublicKey]) ->afterStateUpdated(function ($livewire) { $livewire->validateOnly('data.public_key'); })