update edit user functionality

This commit is contained in:
pesu98
2026-05-11 11:54:09 +08:00
parent 7a6982570e
commit 79b0184d3a
4 changed files with 72 additions and 0 deletions

View File

@@ -9,6 +9,12 @@
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6">
@if (session('success'))
<div class="mb-4 text-sm text-green-600 dark:text-green-400">
{{ session('success') }}
</div>
@endif
<table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
<thead class="bg-gray-50 dark:bg-gray-700">
<tr>
@@ -21,6 +27,7 @@
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
{{ __('Joined') }}
</th>
<th class="px-6 py-3"></th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200 dark:divide-gray-700">
@@ -35,6 +42,11 @@
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-600 dark:text-gray-400">
{{ $user->created_at->format('M j, Y') }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-right">
<a href="{{ route('users.edit', $user) }}" class="text-indigo-600 dark:text-indigo-400 hover:underline">
{{ __('Edit') }}
</a>
</td>
</tr>
@endforeach
</tbody>