diff --git a/.gitignore b/.gitignore
index 35aa09ee6..5cf58d52e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ composer.lock
/phpunit.xml
/.phpunit.cache
.phpunit.result.cache
+.idea
diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php
index 41c4cb6dc..24abd76a8 100644
--- a/src/Console/InstallCommand.php
+++ b/src/Console/InstallCommand.php
@@ -422,6 +422,7 @@ protected function installInertiaStack()
// Inertia Pages...
copy(__DIR__.'/../../stubs/inertia/resources/js/Pages/Dashboard.vue', resource_path('js/Pages/Dashboard.vue'));
+ copy(__DIR__.'/../../stubs/inertia/resources/js/Pages/PageContainer.vue', resource_path('js/Pages/PageContainer.vue'));
copy(__DIR__.'/../../stubs/inertia/resources/js/Pages/PrivacyPolicy.vue', resource_path('js/Pages/PrivacyPolicy.vue'));
copy(__DIR__.'/../../stubs/inertia/resources/js/Pages/TermsOfService.vue', resource_path('js/Pages/TermsOfService.vue'));
copy(__DIR__.'/../../stubs/inertia/resources/js/Pages/Welcome.vue', resource_path('js/Pages/Welcome.vue'));
diff --git a/stubs/inertia/resources/js/Layouts/AppLayout.vue b/stubs/inertia/resources/js/Layouts/AppLayout.vue
index 654a6f793..afe746b9f 100644
--- a/stubs/inertia/resources/js/Layouts/AppLayout.vue
+++ b/stubs/inertia/resources/js/Layouts/AppLayout.vue
@@ -1,6 +1,6 @@
-
+
API Tokens
@@ -26,5 +31,5 @@ defineProps({
/>
-
+
diff --git a/stubs/inertia/resources/js/Pages/Dashboard.vue b/stubs/inertia/resources/js/Pages/Dashboard.vue
index d2c067ff1..1be5ce4de 100644
--- a/stubs/inertia/resources/js/Pages/Dashboard.vue
+++ b/stubs/inertia/resources/js/Pages/Dashboard.vue
@@ -1,10 +1,15 @@
-
+
Dashboard
@@ -18,5 +23,5 @@ import Welcome from '@/Components/Welcome.vue';
-
+
diff --git a/stubs/inertia/resources/js/Pages/PageContainer.vue b/stubs/inertia/resources/js/Pages/PageContainer.vue
new file mode 100644
index 000000000..6a5e1dff9
--- /dev/null
+++ b/stubs/inertia/resources/js/Pages/PageContainer.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/stubs/inertia/resources/js/Pages/Profile/Show.vue b/stubs/inertia/resources/js/Pages/Profile/Show.vue
index 1d4a4ae4d..fc0bdbea4 100644
--- a/stubs/inertia/resources/js/Pages/Profile/Show.vue
+++ b/stubs/inertia/resources/js/Pages/Profile/Show.vue
@@ -6,6 +6,11 @@ import SectionBorder from '@/Components/SectionBorder.vue';
import TwoFactorAuthenticationForm from '@/Pages/Profile/Partials/TwoFactorAuthenticationForm.vue';
import UpdatePasswordForm from '@/Pages/Profile/Partials/UpdatePasswordForm.vue';
import UpdateProfileInformationForm from '@/Pages/Profile/Partials/UpdateProfileInformationForm.vue';
+import PageContainer from "@/Pages/PageContainer.vue";
+
+defineOptions({
+ layout: AppLayout,
+})
defineProps({
confirmsTwoFactorAuthentication: Boolean,
@@ -14,7 +19,7 @@ defineProps({
-
+
Profile
@@ -53,5 +58,5 @@ defineProps({
-
+
diff --git a/stubs/inertia/resources/js/Pages/Teams/Create.vue b/stubs/inertia/resources/js/Pages/Teams/Create.vue
index 8cdd4526f..a8b7ab6f4 100644
--- a/stubs/inertia/resources/js/Pages/Teams/Create.vue
+++ b/stubs/inertia/resources/js/Pages/Teams/Create.vue
@@ -1,10 +1,15 @@
-
+
Create Team
@@ -16,5 +21,5 @@ import CreateTeamForm from '@/Pages/Teams/Partials/CreateTeamForm.vue';
-
+
diff --git a/stubs/inertia/resources/js/Pages/Teams/Show.vue b/stubs/inertia/resources/js/Pages/Teams/Show.vue
index d22fe0ecc..27e719f69 100644
--- a/stubs/inertia/resources/js/Pages/Teams/Show.vue
+++ b/stubs/inertia/resources/js/Pages/Teams/Show.vue
@@ -4,6 +4,11 @@ import DeleteTeamForm from '@/Pages/Teams/Partials/DeleteTeamForm.vue';
import SectionBorder from '@/Components/SectionBorder.vue';
import TeamMemberManager from '@/Pages/Teams/Partials/TeamMemberManager.vue';
import UpdateTeamNameForm from '@/Pages/Teams/Partials/UpdateTeamNameForm.vue';
+import PageContainer from "@/Pages/PageContainer.vue";
+
+defineOptions({
+ layout: AppLayout,
+})
defineProps({
team: Object,
@@ -13,7 +18,7 @@ defineProps({
-
+
Team Settings
@@ -38,5 +43,5 @@ defineProps({
-
+