34 خطوط
798 B
PHP
34 خطوط
798 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class UpdateProfileRequest extends FormRequest
|
|
{
|
|
protected function prepareForValidation(): void
|
|
{
|
|
if ($this->has('email')) {
|
|
$this->merge([
|
|
'email' => strtolower(trim((string) $this->input('email'))),
|
|
]);
|
|
}
|
|
}
|
|
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => 'required|string|max:255',
|
|
'email' => 'required|email|unique:users,email,' . $this->user()->id,
|
|
'phone' => 'nullable|string|max:50',
|
|
'job_title' => 'nullable|string|max:255',
|
|
'department' => 'nullable|string|max:255',
|
|
];
|
|
}
|
|
}
|