diff --git a/lang/de/app.php b/lang/de/app.php index a83823f..ff0f4ef 100644 --- a/lang/de/app.php +++ b/lang/de/app.php @@ -54,5 +54,11 @@ return [ 'title' => 'Anwesenheitsbestätigung', 'content' => 'Sollten Sie eine Bestätigung Ihres Besuchs benötigen, stellen wir Ihnen diese selbstverständlich in Papierform aus.' ] + ], + 'imprint' => [ + 'title' => 'Impressum', + 'content' => 'Hiermit weisen wir darauf hin, dass es sich bei dieser Platform um ein Projekt des Chaos Computer Clubs handelt, welche keine rechtlich geltenden Dokumente ausstellt. +
Es handelt sich weder um echte Dienstleistungen im gewerblichen Sinne, noch um geschäftsmäßige Dienste. +
Aus diesem Grund entfällt die Impressumspflicht.' ] ]; diff --git a/lang/en/app.php b/lang/en/app.php index 4f3464f..8025d7e 100644 --- a/lang/en/app.php +++ b/lang/en/app.php @@ -54,5 +54,11 @@ return [ 'title' => 'Certification of Attendance', 'content' => 'Should you require certification of your visit, we will of course provide you with an official document.' ] + ], + 'imprint' => [ + 'title' => 'Imprint', + 'content' => 'We hereby inform you that this platform is a project of the Chaos Computer Club and does not issue any legally binding documents. +
It does not constitute genuine commercial services or business-related services. +
Therefore, the legal requirement to provide an imprint does not apply.' ] ]; diff --git a/resources/views/content/imprint.blade.php b/resources/views/content/imprint.blade.php index 0ea8b70..c9e515b 100644 --- a/resources/views/content/imprint.blade.php +++ b/resources/views/content/imprint.blade.php @@ -3,5 +3,7 @@ @endsection @section('content') - +

{{ __('app.imprint.title') }}

+
+

{!! __('app.imprint.content') !!}

@endsection