@extends('layouts.app') @section('title', 'My Profile') @section('content')

User Account Settings

Update your personal information and security credentials.

@if(session('success'))
{{ session('success') }}
@endif
@csrf
Avatar
{{ $user->name }}

{{ $user->email }}

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

Security & Password

Leave password fields blank if you don't want to change them.

@error('password')
{{ $message }}
@enderror
@endsection @section('scripts') @endsection