feat(Admin Panel & Charts)

This commit is contained in:
2025-10-23 11:41:56 +02:00
parent bd268f9b7f
commit 07160656f5
26 changed files with 840 additions and 7 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Filament\Resources\Users\Schemas;
use Filament\Forms\Components\DateTimePicker;
use Filament\Forms\Components\TextInput;
use Filament\Schemas\Schema;
class UserForm
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextInput::make('name')
->required(),
TextInput::make('email')
->label('Email address')
->email()
->required(),
DateTimePicker::make('email_verified_at'),
TextInput::make('password')
->password()
->required(),
]);
}
}