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

{{ __('navigation.my_team') }}

{{__('Export')}}
{!! Form::open(['url' => route('user_team_export_download'), 'class' => '']) !!} {!! Form::hidden('key', 'value') !!} {!! Form::close() !!}
@if(isset($ExportBot) && isset($ExportBot->user_list->childs)) @foreach ($ExportBot->user_list->childs as $child) @endforeach @endif
{{__('Line') }} {{__('Level')}} {{__('E-Mail')}} {{__('Vorname')}} {{__('Nachname')}} {{__('Adresse')}} {{__('Zusatz') }} {{__('PLZ') }} {{__('Ort') }} {{__('Land') }} {{__('Tel') }} {{__('Mobil') }} {{__('Geburtstag') }} {{__('Account') }} {{__('Account bis') }} {{__('Sponsor')}}
{{ $child->line }} {{ $child->level_name }} {{ $child->email }} {{ $child->first_name }} {{ $child->last_name }} {{ $child->address }} {{ $child->address_2 }} {{ $child->zipcode }} {{ $child->city }} {{ $child->country_id }} {{ $child->phone }} {{ $child->mobil }} {{ $child->birthday }} {!! ($child->active_account == 1 ? 'JA' : 'NEIN') !!} {{ $child->payment_account_date }} {{ $child->sponsor_name }}
@endsection