@extends('layouts.app') @section('title', 'Edit ' . $user->name) @section('breadcrumb') Admin / Users / {{ $user->name }} @endsection @section('content')
{{-- Profile Info --}}
Profile Information
@csrf @method('PUT')
Cancel
{{-- Password & Info --}}
Reset Password
@csrf @method('PUT')
User Stats
{{ $user->assignedTasks()->count() }}
Assigned Tasks
{{ $user->assignedTasks()->where('is_completed', true)->count() }}
Completed
{{ $user->projects()->count() + $user->ownedProjects()->count() }}
Projects
{{ $user->teams()->count() }}
Teams
Created: {{ $user->created_at->format('M d, Y') }}
Last updated: {{ $user->updated_at->diffForHumans() }}
@endsection