Skip to content

Commit

Permalink
Merge pull request #574 from Heroes-Profile/develop
Browse files Browse the repository at this point in the history
Fixes to custom error pages
  • Loading branch information
Zemill authored Dec 6, 2023
2 parents 8278a7d + dc11a4d commit 4970a53
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
9 changes: 8 additions & 1 deletion resources/views/errors/404.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
@extends('layouts.app', $regions)
@extends('layouts.app', ['regions' => [
1 => 'NA',
2 => 'EU',
3 => 'KR',
/* 4 => 'UNK', */
5 => 'CN',
]])


@section('title', 'Error')
@section('meta_keywords', '404 error, page not found, not found error, website error, error page, site not found')
Expand Down
8 changes: 7 additions & 1 deletion resources/views/errors/500.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
@extends('layouts.app', $regions)
@extends('layouts.app', ['regions' => [
1 => 'NA',
2 => 'EU',
3 => 'KR',
/* 4 => 'UNK', */
5 => 'CN',
]])

@section('content')
<div class="error-page">
Expand Down

0 comments on commit 4970a53

Please sign in to comment.