2

I am having laravel project version 8.23 with the jetstream

PFA image below

enter image description here

How to disable this part in the jetstream

Sanmit Pawar
  • 211
  • 3
  • 10

2 Answers2

2

In resources -> views -> profile -> show.blade.php file

enter image description here

comment following section

enter image description here

Sanmit Pawar
  • 211
  • 3
  • 10
0

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" />

enter image description here

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.

Andrew
  • 1,745
  • 1
  • 21
  • 29