{{-- Actifisys (dnyActifisys) developed by Daniel Brendel (C) 2019 - 2023 by Daniel Brendel Version: 1.0 Contact: dbrendel1988gmailcom GitHub: https://github.com/danielbrendel/ Released under the MIT license --}} @include('layouts.layout_head')
@if ($errors->any())

{{ __('app.error') }}

@foreach ($errors->all() as $error) {{ $error }}
@endforeach

@endif @if (Session::has('error'))

{{ __('app.error') }}

{!! Session::get('error') !!}

@endif @if (Session::has('success'))

{{ __('app.success') }}

{!! Session::get('success') !!}

@endif

@if (Session::has('flash.error')) {{ Session::get('flash.error') }} @endif

@if (Session::has('flash.success')) {{ Session::get('flash.success') }} @endif

@yield('announcements') @include('widgets.header') @guest @if (env('APP_ABOUTPOSITION', 'bottom') === 'top')
@include('widgets.about', ['about_content' => \App\AppModel::getAboutContent()])
@endif @endguest
{{ __('app.close') }}
{{ __('app.close') }}
@yield('content')
@guest @if (env('APP_ABOUTPOSITION', 'bottom') === 'bottom') @include('widgets.about', ['about_content' => \App\AppModel::getAboutContent()]) @endif @endguest @include('widgets.links') @include('widgets.bottom')
@auth @yield('modal') @endauth
@if (env('APP_ENABLESCROLLER'))
@endif