fix(profile): show and persist line id in profile form

This commit is contained in:
2026-02-13 08:42:04 +08:00
parent 5c3866446c
commit 296a70010d
3 changed files with 18 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ class ProfileUpdateRequest extends FormRequest
'email' => ['required', 'string', 'lowercase', 'email', 'max:255', Rule::unique(User::class)->ignore($this->user()->id)],
'national_id' => ['nullable', 'string', 'max:50'],
'phone' => ['nullable', 'string', 'max:50'],
'line_id' => ['nullable', 'string', 'max:100'],
'phone_home' => ['nullable', 'string', 'max:50'],
'phone_fax' => ['nullable', 'string', 'max:50'],
'birth_date' => ['nullable', 'date'],