25 lines
686 B
PHP
25 lines
686 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages\Auth;
|
|
|
|
use Filament\Pages\Auth\Register as BaseRegister;
|
|
|
|
class Register extends BaseRegister
|
|
{
|
|
// Kustomisasi form registrasi jika diperlukan
|
|
protected function getForms(): array
|
|
{
|
|
return [
|
|
'form' => $this->form(
|
|
$this->makeForm()
|
|
->schema([
|
|
$this->getNameFormComponent(),
|
|
$this->getEmailFormComponent(),
|
|
$this->getPasswordFormComponent(),
|
|
$this->getPasswordConfirmationFormComponent(),
|
|
])
|
|
->statePath('data'),
|
|
),
|
|
];
|
|
}
|
|
}
|