32 lines
929 B
PHP
32 lines
929 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Customers\Schemas;
|
|
|
|
use Filament\Forms\Components\DatePicker;
|
|
use Filament\Forms\Components\TextInput;
|
|
use Filament\Schemas\Schema;
|
|
|
|
class CustomerForm
|
|
{
|
|
public static function configure(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
TextInput::make('full_name')
|
|
->required(),
|
|
TextInput::make('cmnd_cccd')
|
|
->required(),
|
|
TextInput::make('phone')
|
|
->tel(),
|
|
TextInput::make('email')
|
|
->label('Email address')
|
|
->email(),
|
|
TextInput::make('address_permanent'),
|
|
TextInput::make('address_contact'),
|
|
DatePicker::make('dob'),
|
|
DatePicker::make('id_issue_date'),
|
|
TextInput::make('id_issue_place'),
|
|
]);
|
|
}
|
|
}
|