@extends('layouts.app') @section('title', 'Profile | TAKEONE') @section('extra_styles') @endsection @section('content')
@if($user->avatar) {{ $user->name }} @else {{ $user->name }} @endif

{{ $user->name }}

{{ $user->email }}

{{ $user->videos->count() }}
Videos
{{ $user->likes->count() }}
Likes
{{ \DB::table('video_views')->whereIn('video_id', $user->videos->pluck('id'))->count() }}
Total Views

Edit Profile

@if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
Max size: 5MB. Supported: JPG, PNG, WebP
@endsection