34 lines
963 B
PHP
34 lines
963 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Users\Schemas;
|
|
|
|
use Filament\Forms\Components\DateTimePicker;
|
|
use Filament\Forms\Components\FileUpload;
|
|
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(),
|
|
FileUpload::make('avatar_url')
|
|
->label('Avatar')
|
|
->image()
|
|
->disk('public')
|
|
->directory('avatars'),
|
|
DateTimePicker::make('email_verified_at'),
|
|
TextInput::make('password')
|
|
->password()
|
|
->required(),
|
|
]);
|
|
}
|
|
}
|