@extends('voyager::master') @section('css') @stop @section('content')
{{ Auth::user()->name }} avatar

{{ ucwords(Auth::user()->name) }}

{{ ucwords(Auth::user()->email) }}
@if ( Auth::user()->role->name == 'athlete' || Auth::user()->role->name == 'trainer' )
Lidbond: {{ Auth::user()->assignedTo->name }}
@endif

{{ Auth::user()->bio }}

@if ( Auth::user()->can('edit', Voyager::model('User')) ) @if ($route != '') {{ __('voyager::profile.edit') }} @endif @endif
@stop