mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 10:18:45 +08:00
13 lines
293 B
PHP
13 lines
293 B
PHP
@extends('flarum.forum::layouts.basic')
|
|
|
|
@section('content')
|
|
<p>
|
|
{{ $message }}
|
|
</p>
|
|
<p>
|
|
<a href="{{ $url->to('forum')->base() }}">
|
|
{{ $translator->trans('core.views.error.not_found_return_link', ['{forum}' => $settings->get('forum_title')]) }}
|
|
</a>
|
|
</p>
|
|
@endsection
|