Profile
{{ strtoupper(substr($user->name, 0, 1)) }}

{{ $user->name }}

{{ $user->email }}

{{ ucfirst($user->role) }} @if($user->has_paid) Active @endif
@if($allBooks->count())
@foreach($allBooks as $book)

{{ $book->title }}

Updated {{ $book->updated_at->diffForHumans() }}

{{ ucfirst($book->status) }}
@csrf @method('delete')
@endforeach
@else

No books found.

@endif
@if($completedBooks->count())
@foreach($completedBooks as $book)

{{ $book->title }}

Updated {{ $book->updated_at->diffForHumans() }}

{{ ucfirst($book->status) }}
@csrf @method('delete')
@endforeach
@else

No completed books yet.

@endif
@if($incompleteBooks->count())
@foreach($incompleteBooks as $book)

{{ $book->title }}

Updated {{ $book->updated_at->diffForHumans() }}

{{ ucfirst($book->status) }}
@csrf @method('delete')
@endforeach
@else

No incomplete books.

@endif
@if($allChapters->count())
@foreach($allChapters as $chapter)

{{ $chapter->title ?: 'Untitled Chapter' }}

{{ optional($chapter->book)->title }} • Updated {{ $chapter->updated_at->diffForHumans() }}

@csrf @method('delete')
@endforeach
@else

No chapters found.

@endif

Update Profile Information

@include('profile.partials.update-profile-information-form')

Reset Password

@include('profile.partials.update-password-form')
@csrf @method('delete')

Delete User Account

This will hide your account from the frontend. Enter your password to confirm.

@error('password', 'userDeletion')

{{ $message }}

@enderror