From f57d2356511c0c262ec182784735f2e32dd76209 Mon Sep 17 00:00:00 2001 From: Yutaka Kurosaki Date: Sun, 30 Nov 2025 12:36:53 +0900 Subject: [PATCH] Remove language setting from profile page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since language switching is now available in the header for all users, the separate language setting section in the profile page is redundant. Changes: - Remove update-locale-form include from profile/edit.blade.php - Delete profile/partials/update-locale-form.blade.php Users can now change language using the header dropdown instead. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/resources/views/profile/edit.blade.php | 6 --- .../partials/update-locale-form.blade.php | 46 ------------------- 2 files changed, 52 deletions(-) delete mode 100644 src/resources/views/profile/partials/update-locale-form.blade.php diff --git a/src/resources/views/profile/edit.blade.php b/src/resources/views/profile/edit.blade.php index aeb700a..c77753f 100644 --- a/src/resources/views/profile/edit.blade.php +++ b/src/resources/views/profile/edit.blade.php @@ -13,12 +13,6 @@ -
-
- @include('profile.partials.update-locale-form') -
-
-
@include('profile.partials.update-password-form') diff --git a/src/resources/views/profile/partials/update-locale-form.blade.php b/src/resources/views/profile/partials/update-locale-form.blade.php deleted file mode 100644 index 4e079ec..0000000 --- a/src/resources/views/profile/partials/update-locale-form.blade.php +++ /dev/null @@ -1,46 +0,0 @@ -
-
-

- {{ __('messages.settings.language') }} -

- -

- {{ __('messages.settings.select_language') }} -

-
- -
- @csrf - -
- - - -
- -
- {{ __('messages.common.save') }} - - @if (session('success')) -

{{ session('success') }}

- @endif -
-
-
-