Add 404 and 403 error pages
This commit is contained in:
parent
e075b9061e
commit
d3d1b88135
4 changed files with 176 additions and 0 deletions
|
@ -2,6 +2,18 @@
|
|||
|
||||
return [
|
||||
'validation_error' => 'There was an error with one or more fields in the request.',
|
||||
'errors' => [
|
||||
'return' => 'Return to Previous Page',
|
||||
'home' => 'Go Home',
|
||||
'403' => [
|
||||
'header' => 'Forbidden',
|
||||
'desc' => 'You do not have permission to access this resource on this server.',
|
||||
],
|
||||
'404' => [
|
||||
'header' => 'File Not Found',
|
||||
'desc' => 'We were unable to locate the requested resource on the server.',
|
||||
],
|
||||
],
|
||||
'index' => [
|
||||
'header' => 'Your Servers',
|
||||
'header_sub' => 'Servers you own and have access to.',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue