Add fallback mechanism and logout button on 500 error page to prevent lock in change-password

This commit is contained in:
2026-08-01 23:02:12 +07:00
parent e06b1db44b
commit eda904524f
2 changed files with 24 additions and 6 deletions
+14 -4
View File
@@ -14,10 +14,20 @@
@endsection
@section('action')
<button onclick="history.back();"
class="btn-secondary w-full sm:w-auto text-[13px] h-[40px] px-6 flex items-center justify-center transition-all duration-300 hover:scale-[1.03] hover:bg-gray-100 active:scale-[0.97]">
{{ __('errors.back') }}
</button>
@auth
<form action="{{ route('logout') }}" method="POST" class="w-full sm:w-auto">
@csrf
<button type="submit"
class="btn-secondary w-full sm:w-auto text-[13px] h-[40px] px-6 flex items-center justify-center transition-all duration-300 hover:scale-[1.03] hover:bg-gray-100 active:scale-[0.97] cursor-pointer">
Đăng xuất
</button>
</form>
@else
<button onclick="history.back();"
class="btn-secondary w-full sm:w-auto text-[13px] h-[40px] px-6 flex items-center justify-center transition-all duration-300 hover:scale-[1.03] hover:bg-gray-100 active:scale-[0.97]">
{{ __('errors.back') }}
</button>
@endauth
<a href="{{ url('/') }}"
class="btn-primary w-full sm:w-auto text-[13px] h-[40px] px-6 flex items-center justify-center transition-all duration-300 hover:scale-[1.03] hover:bg-primary-hover active:scale-[0.97]">
{{ __('errors.back_to_home') }}