Reputation: 235
I am having laravel project version 8.23 with the jetstream
PFA image below
How to disable this part in the jetstream
Upvotes: 2
Views: 1406
Reputation: 1823
If you're using the Inertiajs & Vuejs stack, you need to comment out/remove the following line in resources\js\Pages\Profile\Show.vue
:
<logout-other-browser-sessions-form :sessions="sessions" class="mt-10 sm:mt-0" />
Or if you're wanting to just edit the contents of the component you can edit LogoutOtherBrowserSessions.vue
located here:resources\js\Pages\Profile\LogoutOtherBrowserSessionsForm.vue
.
Upvotes: 0
Reputation: 235
In resources -> views -> profile -> show.blade.php file
comment following section
Upvotes: 2