@extends('layouts.app') @section('title', __('titles.windows.profile')) @section('content')
@if(session()->has('success')) @include('includes.shared.auto_dismiss_toast', ['message_kind' => session('success.message_kind'), 'message' => session('success.message')]) @endif @if(session()->has('complete_error')) @include('includes.shared.auto_dismiss_toast', ['message_kind' => 'error', 'message' => session('complete_error')]) @endif @if(!$profileCompletion['is_complete']) @include('users.includes.profile_completion_warning', ['message_kind' => 'info', 'message' => 'messages.profile_completion_warning']) @endif
Profile picture

{{ __('titles.pages.profile', ['firstname' => $user->firstname, 'lastname' => $user->lastname]) }}


@if($editMode)
@csrf {{ method_field('PUT') }}
@csrf {{ method_field('PUT') }}

@endif
@include('users.includes.user_affiliations_table')

@include('users.includes.user_cnu_sections_table')

{{ Str::ucfirst(__('entities.tags')) }}

@if($editMode) @include('includes.shared.tags_form', ['entity_type' => 'user', 'entity_id' => $user->id]) @endif
@include('includes.shared.tags_block', ['entity_type' => 'user', 'entity_id' => $user->id])

@include('users.includes.user_social_networks_table')
Profile picture
@if($editMode)
avatar() == '') style="display:none;" @endif>
@endif
@endsection