complete story 1.3 with qa test & added future recommendations to the dev
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user