@extends('layouts.app') @section('title', 'Profile') @section('page-title', 'My Profile') @section('breadcrumb', 'Account Settings') @section('content')

Profile Information

@csrf @method('PUT')
@if($user->avatar) @else {{ strtoupper(substr($user->name, 0, 1)) }} @endif
@error('avatar')

{{ $message }}

@enderror

Change Password

@csrf @method('PUT')
@endsection