mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 19:24:03 +01:00
20 lines
588 B
PHP
20 lines
588 B
PHP
@extends('layout.error')
|
|
|
|
@section('content')
|
|
<div class="middle-box text-center">
|
|
<div>
|
|
<img class="logo" height="65" src="{{ url('img/cachet-logo.svg') }}" alt="Cachet"/>
|
|
</div>
|
|
<h1>404</h1>
|
|
<h3>{{ trans('cachet.dashboard.not_found') }}</h3>
|
|
|
|
<div class="error-desc">
|
|
<p>{{ trans('cachet.dashboard.not_found_message') }}</p>
|
|
<br/>
|
|
<p>
|
|
<a href='/' class='btn btn-default btn-lg'>{{ trans('cachet.dashboard.not_found_link') }}</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
@stop
|