- @include('users.form', ['model' => $user, 'authMethod' => $authMethod])
+ @include('users.parts.form', ['model' => $user, 'authMethod' => $authMethod])
@@ -22,7 +22,7 @@
{{ trans('settings.users_avatar_desc') }}
- @include('components.image-picker', [
+ @include('form.image-picker', [
'resizeHeight' => '512',
'resizeWidth' => '512',
'showRemove' => false,
@@ -54,36 +54,66 @@
-
+
- @if($currentUser->id === $user->id && count($activeSocialDrivers) > 0)
-
+
+ {{ trans('settings.users_mfa') }}
+ {{ trans('settings.users_mfa_desc') }}
+
+
+ @if ($mfaMethods->count() > 0)
+ @icon('check-circle')
+ @else
+ @icon('cancel')
+ @endif
+ {{ trans_choice('settings.users_mfa_x_methods', $mfaMethods->count()) }}
+
+
+ @if($user->id === user()->id)
+
{{ trans('settings.users_mfa_configure') }}
+ @endif
+
+
+
+
+
+ @if(user()->id === $user->id && count($activeSocialDrivers) > 0)
+
{{ trans('settings.users_social_accounts') }}
{{ trans('settings.users_social_accounts_info') }}
@foreach($activeSocialDrivers as $driver => $enabled)
-
@icon('auth/'. $driver, ['style' => 'width: 56px;height: 56px;'])
+
@icon('auth/'. $driver, ['style' => 'width: 56px;height: 56px;'])
@endforeach
-
+
+ @endif
+
+ @if((user()->id === $user->id && userCan('access-api')) || userCan('users-manage'))
+ @include('users.api-tokens.parts.list', ['user' => $user])
@endif