@extends('layouts.dashboard') @section('title', 'Profile') @section('content')
@if (auth()->user()->image) @else {{ strtoupper(substr(auth()->user()->name, 0, 1)) }} @endif

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

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


@include('profile.partials.update-profile-information-form')
@include('profile.partials.update-password-form')
@include('profile.partials.delete-user-form')
@endsection @push('scripts') @endpush