Files
thankcard-system/resources/views/errors/500.blade.php
T

36 lines
1.4 KiB
PHP

@extends('errors.layout')
@section('title', __('errors.500_title'))
@section('code', '500')
@section('illustration')
<div class="mb-4 flex justify-center">
<img src="{{ asset('images/icn-500.svg') }}" alt="500 Illustration" class="h-20 sm:h-24 w-auto object-contain">
</div>
@endsection
@section('message')
{!! __('errors.500_message') !!}
@endsection
@section('action')
@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') }}
</a>
@endsection