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

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

{{__('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
{{__('tables.line') }} {{__('tables.level')}} {{__('tables.email')}} {{__('tables.firstname')}} {{__('tables.lastname')}} {{__('tables.address')}} {{__('tables.addition') }} {{__('tables.postcode') }} {{__('tables.city') }} {{__('tables.country') }} {{__('tables.phone') }} {{__('tables.mobil') }} {{__('tables.birthday') }} {{__('tables.account') }} {{__('tables.account_to') }} {{__('tables.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 ? __('yes') : __('no')) !!} {{ $child->payment_account_date }} {{ $child->sponsor_name }}
@endsection