@extends('layouts.app') @section('title', 'Edit User') @section('content')
Update informasi user {{ $user->name }}
| Nama: | {{ $user->name }} |
| Username: | {{ $user->username }} |
| Email: | {{ $user->email }} |
| Role: | @php $roleColors = [ 'administrator' => 'danger', 'admin' => 'primary', 'teknisi' => 'info', 'reseler' => 'warning', 'pelanggan' => 'success' ]; @endphp {{ ucfirst($user->role) }} |
| Status: | {{ ucfirst($user->status) }} |
| Dibuat: | {{ $user->created_at->format('d M Y') }} |