11 lines
285 B
PHP
11 lines
285 B
PHP
@extends('layout.app')
|
|
@section('scripts')
|
|
@endsection
|
|
|
|
@section('content')
|
|
<img class="content-img" src="{{ asset('/Bilder/ernsthaft.jpg') }}" alt="{{ __('app.imprint.alt') }}">
|
|
<h1>{{ __('app.imprint.title') }}</h1>
|
|
<br />
|
|
<p>{!! __('app.imprint.content') !!}</p>
|
|
@endsection
|