@extends('users.account.layout') @section('main')
{{ method_field('put') }} {{ csrf_field() }}

{{ trans('preferences.profile') }}

View Public Profile

Manage the details of your account that represent you to other users, in addition to details that are used for communication and system personalisation.

Configure your display name which will be visible to other users in the system within the activity you perform, and content you own.

@include('form.text', ['name' => 'name'])

This email will be used for notifications and, depending on active system authentication, system access.

@include('form.text', ['name' => 'email', 'disabled' => !userCan('users-manage')])
@if(!userCan('users-manage'))

Unfortunately you don't have permission to change your email address. If you want to change this, you'd need to ask an administrator to change this for you.

@endif

Select an image which will be used to represent yourself to others in the system. Ideally this image should be square and about 256px in width and height.

@include('form.image-picker', [ 'resizeHeight' => '512', 'resizeWidth' => '512', 'showRemove' => false, 'defaultImage' => url('/user_avatar.png'), 'currentImage' => user()->getAvatar(80), 'currentId' => user()->image_id, 'name' => 'profile_image', 'imageClass' => 'avatar large' ])
@include('users.parts.language-option-row', ['value' => old('language') ?? user()->getLocale()->appLocale()])
@if(userCan('users-manage'))

Administrator Options

Additional administrator-level options, like role options, can be found for your user account in the "Settings > Users" area of the application.

@endif @stop