Files
2024-12-02 01:18:34 +07:00

13 lines
452 B
PHP

@extends('errors.errors_layout')
@section('title')
500 - Internal Server Error
@endsection
@section('error-content')
<h2 class="headline text-danger">500 - Internal Server Error</h2>
<p>This page isn't working, We will work on fixing that right away. !</p>
<a class="btn btn-primary" href="{{ route('admin.dashboard') }}">Back to Home</a>
<a class="btn btn-primary" href="{{ route('admin.login') }}">Login Again !</a>
@endsection