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

{{ __('Your Data') }}

@if($user->active == 0)

{{__('If you have checked your data, share your data here!')}}

{!! Form::open(['url' => route('user_data_store'), 'class' => 'form-horizontal', 'id'=>'lead-form-validation']) !!} @include('user.form') @if(!$user->account->data_protection) @include('user.data_confirm') @endif
 
{!! Form::close() !!}
@else {{ __('Adjust data') }} @endif
@if($user->active == 1 && !$user->user_shop)

{{__('Your 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
@endif

{{__('Activities') }}

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

{{__('Data released')}} {{__('at')}} {{ $user->getActiveDateFormat() }}

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

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

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

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

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

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

@else

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

@endif @endif @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() !!}

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

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

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

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

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

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

{{__('Change password')}} @endif {{__('Change E-Mail')}}
@endif

{{ __('Logout') }}

  {{ __('Logout') }}

{{__('Delete') }}

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

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