@extends('layouts.user') @section('title', 'Profile Settings | Smart Dermatology') @push('styles') @endpush @section('content')

Profile Settings

Manage your account information and keep your password secure.

@if (session('status'))
{{ session('status') }}
@endif
User Profile

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

{{ auth()->user()->email }}

Use this page to keep your details accurate and your account protected.

Basic Information

Update your name and email address.

@csrf @method('PATCH')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror

Change Password

Choose a strong password and confirm it carefully.

@csrf @method('PATCH')
@error('current_password')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@endsection