mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-13 05:26:47 +00:00
This commit includes the following changes: - Added error handling in the election views to check if the relay server responds with an error message - Included custom error pages for different HTTP status codes (401, 402, 403, 404, 419, 429, 500, 503) - Created a new layout for the error pages
6 lines
153 B
PHP
6 lines
153 B
PHP
@extends('errors::minimal')
|
|
|
|
@section('title', __('Forbidden'))
|
|
@section('code', '403')
|
|
@section('message', __($exception->getMessage() ?: 'Forbidden'))
|