@extends('layouts.app') @section('title', 'My Account') @section('content')
{{-- Page Header --}}

My Account

Manage your profile, password, and account settings.

{{-- ========================================= --}} {{-- PROFILE INFORMATION --}} {{-- ========================================= --}}

Profile Information

Update your name and email address.

@csrf @method('PUT') {{-- Name --}}
@error('name')

{{ $message }}

@enderror
{{-- Email --}}
@error('email')

{{ $message }}

@enderror
{{-- Submit --}}
{{-- ========================================= --}} {{-- CHANGE PASSWORD --}} {{-- ========================================= --}}

Change Password

Ensure your account is using a long, random password to stay secure.

@csrf @method('PUT') {{-- Current Password --}}
@error('current_password')

{{ $message }}

@enderror
{{-- New Password --}}
@error('new_password')

{{ $message }}

@enderror
{{-- Confirm New Password --}}
{{-- Submit --}}
{{-- ========================================= --}} {{-- SUPPORT TTEOTK DEVOTIONALS --}} {{-- ========================================= --}}

Support TTEOTK Devotionals

Thank you for supporting TTEOTK Devotionals! Your donation helps keep the devotionals going.

Donate via PayPal
{{-- ========================================= --}} {{-- DELETE ACCOUNT --}} {{-- ========================================= --}}

Danger Zone

Once you delete your account, there is no going back. All of your data, playlists, and preferences will be permanently removed.

@csrf @method('DELETE')
@endsection