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

{{ auth()->user()->location ?? '—' }}

Informasi Profile

{{ auth()->user()->about_me ?? 'Belum ada deskripsi.' }}


  • Nama Lengkap:   {{ auth()->user()->name }}
  • Mobile:   {{ auth()->user()->phone ?? '—' }}
  • Email:   {{ auth()->user()->email }}
  • Lokasi:   {{ auth()->user()->location ?? '—' }}
Edit Profile
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf