{{ __('User Preview') }}
{{ __('Back to Users') }} {{ __('Edit User') }}
{{ __('Name') }} {{ $user->name }}
{{ __('Email') }} {{ $user->email }}
{{ __('Email Verified') }} @if ($user->email_verified_at) {{ $user->email_verified_at ? $user->email_verified_at->format(config('streamline.users.date_format')) : null }} @else @endif
{{ __('Created At') }} {{ $user->created_at->format(config('streamline.users.date_format')) }}
@if ($user->provider)
{{ __('Provider') }} {{ $user->provider }}
@endif @if ($user->roles()->count() > 0)
{{ __('Roles') }} @foreach ($user->roles as $role) {{ $role->name }} @endforeach
@endif @if ($user->subscriptions()->count() > 0)
{{ __('Subscriptions') }} @foreach ($user->subscriptions as $subscription) {{ \Illuminate\Support\Str::of($subscription->type)->snake()->replace('_', ' ')->title }} @endforeach
@endif