{{-- 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 @yield('content')