@extends('layouts.app', ['title' => __('User Profile')]) @section('content') @include('users.partials.header', [ 'title' => __('Hello') . ' '. auth()->user()->name, 'description' => __('This is your profile page. You can see the progress you\'ve made with your work and manage your projects or assigned tasks'), 'class' => 'col-lg-7' ])
22 {{ __('Friends') }}
10 {{ __('Photos') }}
89 {{ __('Comments') }}

{{ auth()->user()->name }}, 27

{{ __('Bucharest, Romania') }}
{{ __('Solution Manager - Creative Tim Officer') }}
{{ __('University of Computer Science') }}

{{ __('Ryan — the name taken by Melbourne-raised, Brooklyn-based Nick Murphy — writes, performs and records all of his own music.') }}

{{ __('Show more') }}

{{ __('Edit Profile') }}

@csrf @method('put')
{{ __('User information') }}
@if (session('status')) @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

@csrf @method('put')
{{ __('Password') }}
@if (session('password_status')) @endif
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@include('layouts.footers.auth')
@endsection