{{-- resources/views/user/profil.blade.php --}} @extends('layouts.app') @section('title', 'Profil Saya') @push('styles') @endpush @section('content')
@if(auth()->user()->foto) Foto profil @else
{{ strtoupper(substr(auth()->user()->name, 0, 2)) }}
@endif
{{ auth()->user()->name }}
{{ ucfirst(auth()->user()->role) }}
{{ $totalDiagnosa }}
Total diagnosa
{{ $bulanIni }}
Bulan ini

Edit profil

@if(session('success'))
✅ {{ session('success') }}
@endif
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
Email tidak dapat diubah
@error('password')
{{ $message }}
@enderror
@csrf
@endsection @push('scripts') @endpush