mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-14 06:36:46 +00:00
13 lines
183 B
PHP
13 lines
183 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Forms;
|
|
|
|
use Livewire\Attributes\Validate;
|
|
use Livewire\Form;
|
|
|
|
class VoteForm extends Form
|
|
{
|
|
#[Validate('required|min:5')]
|
|
public $reason = '';
|
|
}
|