@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.editprofile') }} @stop {{-- Account page content --}} @section('content')
{{ trans('admin/settings/general.legends.display') }} @if (! config('app.lock_passwords')) @else {{ trans('general.feature_disabled') }} @endif

{{ trans('general.system_default') }}

@can('self.profile')
{{ trans('admin/settings/general.legends.your_details') }} @can('self.edit_location') @if ($snipeSettings->full_multiple_companies_support == '1' && $snipeSettings->scope_locations_fmcs == '1') @cannot('superadmin')
{{ trans('general.fmcs_location_select_note') }}
@endcannot @endif @endcan @if (($user->avatar) && ($user->avatar != '')) @else

{{ $user->display_name }} avatar image {!! trans('general.gravatar_url') !!}

@endif @if ($snipeSettings->two_factor_enabled == '1')
@can('self.two_factor') {{ trans('admin/settings/general.two_factor_enabled_warning') }} @else {{ trans('admin/settings/general.two_factor_enabled_edit_not_allowed') }} @endcan {{ trans('general.feature_disabled') }}
@endif
@endcan
@stop