6 content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
7 <title>Error: {{ $error }}</title>
11 background-color: #F2F2F2;
12 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Roboto", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
21 border-top: 6px solid #206ea7;
40 background-color: #FFF;
42 box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.1);
53 background-color: #206ea7;
54 padding: 0.25rem .5rem;
55 display: inline-block;
61 background-color: #EEE;
62 border: 1px solid #DDD;
69 text-decoration: none;
73 text-decoration: underline;
95 <div class="container">
98 WARNING: Application is in debug mode. This mode has the potential to leak confidential
99 information and therefore should not be used in production or publicly
100 accessible environments.
104 <h4 class="panel-title">Error</h4>
105 <h2>{{ $errorClass }}</h2>
106 <h1>{{ $error }}</h1>
110 <h4 class="panel-title">Help Resources</h4>
113 <a href="https://www.bookstackapp.com/docs/admin/debugging/" target="_blank">Review BookStack debugging documentation »</a>
116 <a href="https://github.com/BookStackApp/BookStack/releases" target="_blank">Ensure your instance is up-to-date »</a>
119 <a href="https://github.com/BookStackApp/BookStack/issues?q=is%3Aissue+{{ urlencode($error) }}" target="_blank">Search for the issue on GitHub »</a>
122 <a href="https://discord.gg/ztkBqR2" target="_blank">Ask for help via Discord »</a>
125 <a href="https://duckduckgo.com/?q={{urlencode("BookStack {$error}")}}" target="_blank">Search the error message »</a>
131 <h4 class="panel-title">Environment</h4>
133 @foreach($environment as $label => $text)
134 <li><strong>{{ $label }}:</strong> {{ $text }}</li>
140 <h4 class="panel-title">Stack Trace</h4>
141 <pre>{{ $trace }}</pre>