diff --git a/resources/views/imprint-content.blade.php b/resources/views/information/imprint-content.blade.php similarity index 100% rename from resources/views/imprint-content.blade.php rename to resources/views/information/imprint-content.blade.php diff --git a/resources/views/imprint.blade.php b/resources/views/information/imprint.blade.php similarity index 90% rename from resources/views/imprint.blade.php rename to resources/views/information/imprint.blade.php index fd0e98d6..421c9844 100644 --- a/resources/views/imprint.blade.php +++ b/resources/views/information/imprint.blade.php @@ -13,7 +13,7 @@
{{ __('Imprint') }}
- @include('imprint-content') + @include('information.imprint-content')
diff --git a/resources/views/privacy-content.blade.php b/resources/views/information/privacy-content.blade.php similarity index 100% rename from resources/views/privacy-content.blade.php rename to resources/views/information/privacy-content.blade.php diff --git a/resources/views/privacy.blade.php b/resources/views/information/privacy.blade.php similarity index 90% rename from resources/views/privacy.blade.php rename to resources/views/information/privacy.blade.php index de672081..081b186f 100644 --- a/resources/views/privacy.blade.php +++ b/resources/views/information/privacy.blade.php @@ -12,7 +12,7 @@
{{ __('Privacy Policy') }}
- @include('privacy-content') + @include('information.privacy-content')
diff --git a/routes/web.php b/routes/web.php index 3826dfa2..47dc9c82 100644 --- a/routes/web.php +++ b/routes/web.php @@ -53,10 +53,10 @@ Auth::routes(['verify' => true]); Route::post('payment/StripeWebhooks', [PaymentController::class, 'StripeWebhooks'])->name('payment.StripeWebhooks'); Route::get('/privacy', function () { - return view('privacy'); + return view('information.privacy'); })->name('privacy'); Route::get('/imprint', function () { - return view('imprint'); + return view('information.imprint'); })->name('imprint');