14 lines
486 B
PHP
14 lines
486 B
PHP
@extends('layouts.loggedout')
|
|
@section('title')
|
|
<title>429 - {{ env('APP_NAME') }}</title>
|
|
@endsection
|
|
@section('titlediscord')
|
|
<meta content="429 - {{ env('APP_NAME') }}" property="og:title" />
|
|
@endsection
|
|
@section('descdiscord')
|
|
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
|
@endsection
|
|
@section('contentloggedout')
|
|
<h2>429 Too Many Requests</h2>
|
|
<p>You've tried to do something too many times. Please try again in a few minutes.</p>
|
|
@endsection |