@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{-- --}}
{{ __('home.welcome_back') }}, {{ $user->account->first_name }}!
{{ __('home.today_is') }} {{ __('cal.weekdays.' . $now->format('l')) }}, {{ $now->format('j') }}. {{ __('cal.months.' . $now->format('F')) }} {{ $now->format('Y') }}


@if (Auth::user()->isActiveAccount()) @include('dashboard._news') @include('dashboard._incentive') @endif @include('dashboard._reminder') @include('dashboard._membership') @include('dashboard._shop') @if (Auth::user()->isActiveAccount()) @include('dashboard._statistics') @include('dashboard._points') @include('dashboard._activities') @endif @include('dashboard._settings')

@endsection