@extends('layouts.app') @section('styles') @endsection @section('content')
User Avatar

{{ $user->name }}

@if (Auth::user()->hasRole('admin')) @elseif (Auth::user()->hasRole('regioadmin')) @elseif (Auth::user()->hasRole('orgadmin')) @elseif (Auth::user()->hasRole('facilitator')) @endif
{{ __('Privacy Information') }}
{{ csrf_field() }} {{ method_field('PATCH') }}
    @if (count($mynewpersonshares) > 0)
  • {{ __('You have new sharing requests from the following individuals:') }}
  • @foreach ($mynewpersonshares as $mynewpersonshare)
  • {{ $mynewpersonshare->name }} -> {{ $mynewpersonshare->profilename }}
  • @endforeach @endif @if (count($mypersonshares) > 0)
  • {{ __('This is the current sharing status for individuals:') }}
  • @foreach ($mypersonshares as $mypersonshare)
  • {{ $mypersonshare->name }} -> {{ $mypersonshare->profilename }}
  • @endforeach @endif
    @if (count($mynewteamshares) > 0)
  • {{ __('You have new sharing requests from the following teams:') }}
  • @foreach ($mynewteamshares as $mynewteamshare)
  • {{ $mynewteamshare->sessionname }} -> {{ $mynewteamshare->profilename }}
  • @endforeach @endif @if (count($myteamshares) > 0)
  • {{ __('This is the current sharing status for teams:') }}
  • @foreach ($myteamshares as $myteamshare)
  • {{ $myteamshare->sessionname }} -> {{ $myteamshare->profilename }}
  • @endforeach @endif
  • {{ __('You can remove your complete account if you desire.') }} {{ __('This will completely remove all of your data from our servers and cannot be undone!') }}

@endsection @push('scripts') @endpush