@extends('layouts.admin') @section('title', 'Admin Profile | Smart Dermatology') @section('page_title', 'Profile Settings') @section('page_subtitle', 'Update your admin account information and password securely.') @push('styles') @endpush @section('content')
Admin Account

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

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

Keep your administrator profile up to date and secure access to the control panel.

Basic Information

Edit your display name and email address.

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

Change Password

Confirm your current password before setting a new one.

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