mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 05:53:45 +08:00
13 lines
291 B
PHP
13 lines
291 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
|