From 7bb4bd06cfb73100845bf854402c9bbcea06a22c Mon Sep 17 00:00:00 2001 From: Arno Kaimbacher Date: Mon, 31 Mar 2025 15:49:25 +0200 Subject: [PATCH] hotfix: disable username and email fields in profile form - Disabled the username and email fields in the profile update form. - Set the `is-read-only` property to `true` for the username and email `FormControl` components. --- .../profile/partials/update-profile-information-form.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/Pages/profile/partials/update-profile-information-form.vue b/resources/js/Pages/profile/partials/update-profile-information-form.vue index e15d13c..5a5fdff 100644 --- a/resources/js/Pages/profile/partials/update-profile-information-form.vue +++ b/resources/js/Pages/profile/partials/update-profile-information-form.vue @@ -105,7 +105,7 @@ const updateProfileInformation = () => { + :is-read-only="true">
{{ errors.login.join(', ') }}
@@ -115,7 +115,7 @@ const updateProfileInformation = () => { + :is-read-only="true">
{{ errors.email.join(', ') }}