@extends('layouts.anggota') @section('title', 'Pengaturan Sistem - Pustaka Nawasena') @section('content')
| Nama Lengkap | Alamat Email | Peran | Status | Tindakan Otoritas |
|---|---|---|---|---|
| {{ $user->name }} | {{ $user->email }} | @if($user->role === 'admin') ADMINISTRATOR @else USER @endif | @if($user->blocked_at) DIBATASI @else AKTIF @endif |
@if($user->role === 'admin')
@if($user->id !== auth()->id())
@else
Sesi Aktif Anda
@endif
@else
@endif
@if($user->id !== auth()->id())
@if(!$user->blocked_at)
@else
@endif
@endif
|