@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if($user->payment_account && $user->daysActiveAccount() <= 29)

{{__('Mitgliedschaft Jahresbeitrag') }}

@if($user->daysActiveAccount() < 0)
Achtung: Deine Mitgliedschaft ist vor {{ $user->daysActiveAccount()*-1 }} Tagen ausgelaufen, bitte aktualisiere jetzt Deine Zahlung!
@elseif($user->daysActiveAccount() < 14)
Achtung: Deine Mitgliedschaft läuft in {{$user->daysActiveAccount()}} Tagen aus, bitte aktualisiere jetzt Deine Zahlung!
@else
Achtung: Deine Mitgliedschaft läuft in {{$user->daysActiveAccount()}} Tagen aus, bitte aktualisiere jetzt Deine Zahlung!
{{-- TODO SEPA --}} @endif

Erst wenn Dein Jahresbeitrag bei uns eingeht wird Deine Mitgliedschaft automastisch um ein Jahr verlängert.

Die Verlängerung gibt ab erstes Abschlussdatum ein weiteres volles Jahr, bis zum {{$user->modifyActiveAccount()}}

Mitgliedschaft jetzt hier verlängern
@endif @if($user->active == 1)

{{__('Your Shop') }}

@if($user->payment_shop) @if($user->shop)

{{__('open since')}} {{__('at')}} {{ $user->shop->getActiveDateFormat() }}

@if($user->shop->active)

{{__('Status')}} {{ __('active') }}

@else

{{__('Status')}} {{ __('inactive') }}

@endif {{__('settings your shop')}} @else {{__('open your shop')}} @endif @else

{{__('Shop nicht gebucht')}}

@endif
@endif

{{__('Activities') }}

@if($user->isActiveAccount() )

{{__('Berater-Mitgliedschaft aktiv')}} {{__('bis zum:')}} {{ $user->getPaymentAccountDateFormat() }}

@else

{{__('Berater-Account inaktiv')}} @if($user->payment_account) {{__('abgelaufen am')}}: {{ $user->getPaymentAccountDateFormat() }} @endif

@endif @if($user->isActiveShop())

{{__('Berater-Online-Shop aktiv')}} {{__('bis zum')}}: {{ $user->getPaymentShopDateFormat() }}

@else

{{__('Berater-Shop inaktiv')}} @if($user->payment_shop) {{__('abgelaufen am')}}: {{ $user->getPaymentShopDateFormat() }} @endif

@endif
@if($user->active == 1) @if($user->files->count()) @foreach($user->files()->whereIdentifier('contract')->get() as $file) MIVITA_Beratervertrag.pdf @endforeach @endif

{{__('Daten vollständig, freigeschaltet')}} {{__('at')}}: {{ $user->getActiveDateFormat() }}

@endif @if($user->account_id) @if($user->active == 1) @if($user->agreement)

{{__('Einverständniserklärung')}} {{__('at')}}: {{ $user->getAgreementFormat() }}

@else

{{__('Einverständniserklärung')}} {{ __('nicht akzeptiert') }}

@endif @endif @if($user->account->data_protection)

{{__('Privacy policy approved')}} {{__('at')}}: {{ $user->account->getDataProtectionFormat() }}

@endif @endif @if($user->confirmed == 1)

{{__('E-Mail verified')}} {{__('at')}}: {{ $user->getConfirmationDateFormat() }}

@endif
@if($user->active == 1) {{--

{{ __('Einwilligung & Datenschutz') }}

{!! Form::open(['url' => route('user_data_accepted_form'), 'class' => 'form-horizontal' , 'id'=>'data-privacy-form-validations']) !!}
 
{!! Form::close() !!}
--}}

{{__('Data, Login & Security') }}

{{__('Sign in with your e-mail:')}} {{ Auth::user()->email }}

{{ __('Adjust data') }} {{__('Change E-Mail')}}

@if(!$user->isPasswort())

{{__('Assign a password for your account.')}}

{{__('Create Password')}} @else

{{__('Change your password here to access your account.')}}

{{__('Change password')}} @endif
@endif

{{ __('Logout') }}

  {{ __('Logout') }}
{{--

{{__('Delete') }}

{{__('If you no longer want to use our offer, you can delete your account here.')}}

{{__('Delete Account')}}
--}} @endsection