Kullanıcı Düzenle
Kullanıcı hesabı bilgilerini güncelle
{{ auth()->user()->name }} Yönetici
{{ strtoupper( substr( auth()->user()->name, 0, 1 ) ) }}
@if($errors->any())
@foreach($errors->all() as $error)
⚠️ {{ $error }}
@endforeach
@endif @if(session('success'))
✓ {{ session('success') }}
@endif

Hesap Bilgileri

Kullanıcının temel hesap bilgilerini buradan güncelleyebilirsin.

{{ strtoupper( substr( $user->name, 0, 1 ) ) }}
{{ $user->name }}
{{ $user->email }}
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
Sistem tarafından oluşturulur ve değiştirilemez.
Durumu kullanıcı detayındaki Aktif/Pasif butonundan değiştirebilirsin.
🔐 Şifre Değiştir Şifreyi değiştirmek istemiyorsan bu alanları boş bırak.
@error('password')
{{ $message }}
@enderror
En az 8 karakter kullanmanı öneriyorum.
İptal

Hesap Özeti

Kullanıcı #{{ $user->id }}
Durum @if($user->is_active) Aktif @else Pasif @endif
Kayıt Tarihi {{ $user->created_at?->format('d.m.Y') ?? '-' }}
Son Güncelleme {{ $user->updated_at?->format('d.m.Y H:i') ?? '-' }}
E-posta {{ $user->email }}
🔒 Güvenlik
Şifre değiştirildiğinde yeni şifre güvenli şekilde hash'lenerek kaydedilir. Şifre alanlarını boş bırakırsan kullanıcının mevcut şifresi korunur.