Textarea::make('public_key')
->label(__('Public Key'))
->maxLength(255)
->rows(10)
->required()
->rules([new PublicKey])
->live(onBlur: true)
->afterStateUpdated(function ($livewire, $component) {
$livewire->validateOnly($component->getStatePath());
})
Textarea::make('public_key')
->label(__('Public Key'))
->maxLength(255)
->rows(10)
->required()
->rules([new PublicKey])
->live(onBlur: true)
->afterStateUpdated(function ($livewire, $component) {
$livewire->validateOnly($component->getStatePath());
})