{{__('Avatar')}}
{{__('Login Information')}}
{{ html()->label(__('Username') . '*', 'username') }} {{ html()->text('username')->id('username')->attribute('rows', 4)->class('form-control')->attribute('v-model', 'formData.username')->attribute('autocomplete', 'off')->attribute('v-bind:class', '{\'form-control\':true, \'is-invalid\':errors.username}')->required()->attribute('aria-required', 'true') }}
@if (config('password-policies.users_can_change', true) || !Request::is('profile/edit') || auth()->user()->is_administrator) @can('edit-user-and-password')
{{__('Leave the password blank to keep the current password:')}}
@endcan
{{ html()->label(__('New Password'), 'password') }}
{{ html()->password('password')->id('password')->attribute('rows', 4)->class('form-control')->attribute('v-model', 'formData.password')->attribute('autocomplete', 'new-password')->attribute('@input', 'props.updatePassword($event.target.value)')->attribute('v-bind:class', '{\'form-control\':true, \'is-invalid\':errors.password}') }}
{{ html()->label(__('Confirm Password'), 'confPassword') }} {{ html()->password('confPassword')->id('confPassword')->attribute('rows', 4)->class('form-control')->attribute('v-model', 'formData.confPassword')->attribute('autocomplete', 'new-password')->attribute('v-bind:class', '{\'form-control\':true, \'is-invalid\':errors.password}') }}
@endif @cannot('edit-user-and-password')
{{__('To change the current username and password please contact your administrator.')}}
@endcannot
@if (!\Request::is('profile/edit'))
{{ html()->label(__('User must change password at next login'), 'forceChangePassword') }}
@endif @if (config('password-policies.2fa_enabled', false) && count($global2FAEnabled) > 0 && $is2FAEnabledForGroup)
{{ html()->label(__('Two Factor Authentication'), 'preferences_2fa') }}
@endif
{{__('Task Notifications Email')}}
{{ html()->checkbox('email_task_notification', 1, false)->id('email_task_notification')->class('custom-control-input')->attribute('v-model', 'formData.email_task_notification') }}
@isset($addons) @foreach ($addons as $addon) {!! $addon['content'] ?? '' !!} @endforeach @endisset
{{__('Settings')}}
{{ html()->label(__('Date Format'), 'datetime_format') }}
{{ html()->label(__('Time Zone'), 'timezone') }}
{{ html()->label(__('Status'), 'status') }}
{{ html()->label(__('Recommendations'), 'status') }}
@isset($addonsSettings) @foreach ($addonsSettings as $addon) {!! $addon['content'] ?? '' !!} @endforeach @endisset