20 lines
271 B
PHP
20 lines
271 B
PHP
|
@extends('layouts.app')
|
||
|
|
||
|
@section('title', Lang::get('resources.home_index_imprint_pagetitle'))
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
|
||
|
<h1>
|
||
|
|
||
|
@lang('resources.home_index_imprint_title')
|
||
|
|
||
|
</h1>
|
||
|
|
||
|
<div>
|
||
|
<p>
|
||
|
@lang('resources.help_content_imprint')
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
@endsection
|