complete story 1.3 with qa test & added future recommendations to the dev

This commit is contained in:
Naser Mansour
2025-12-26 14:04:24 +02:00
parent 84d9c2f66a
commit ebb6841ed0
29 changed files with 760 additions and 101 deletions
@@ -0,0 +1,8 @@
<x-layouts.app>
<div class="flex items-center justify-center min-h-[60vh]">
<div class="text-center">
<flux:heading size="xl">{{ __('Admin Dashboard') }}</flux:heading>
<flux:text class="mt-2 text-zinc-500">{{ __('Dashboard coming soon') }}</flux:text>
</div>
</div>
</x-layouts.app>
@@ -5,6 +5,19 @@
<!-- Session Status -->
<x-auth-session-status class="text-center" :status="session('status')" />
<!-- Error Messages -->
@if (session('error'))
<flux:callout variant="danger">
{{ session('error') }}
</flux:callout>
@endif
@if ($errors->any())
<flux:callout variant="danger">
{{ $errors->first() }}
</flux:callout>
@endif
<form method="POST" action="{{ route('login.store') }}" class="flex flex-col gap-6">
@csrf
@@ -0,0 +1,8 @@
<x-layouts.app>
<div class="flex items-center justify-center min-h-[60vh]">
<div class="text-center">
<flux:heading size="xl">{{ __('Client Dashboard') }}</flux:heading>
<flux:text class="mt-2 text-zinc-500">{{ __('Dashboard coming soon') }}</flux:text>
</div>
</div>
</x-layouts.app>