35 lines
991 B
PHP
35 lines
991 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class AccountUpdateRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'firstname' => ['nullable', 'string', 'max:255'],
|
|
'lastname' => ['nullable', 'string', 'max:255'],
|
|
'displayname' => ['nullable', 'string', 'max:255'],
|
|
'email' => [
|
|
'required',
|
|
'string',
|
|
'lowercase',
|
|
'email',
|
|
'max:255',
|
|
Rule::unique(User::class)->ignore($this->user()->id),
|
|
],
|
|
'phone' => ['nullable', 'string', 'max:32'],
|
|
'timezone' => ['nullable', 'string', 'max:64'],
|
|
];
|
|
}
|
|
}
|