Files
faveo/resources/views/errors/404.blade.php
2016-06-13 20:41:55 +05:30

18 lines
729 B
PHP

@extends('themes.default1.client.layout.client')
@section('content')
<div id="page" class="hfeed site">
<article class="hentry error404 text-center">
<h1 class="error-title">4<i class="fa fa-frown-o text-info"></i><span class="visible-print text-danger">0</span>4</h1>
<h2 class="entry-title text-muted">{!! Lang::get('lang.we_are_sorry_but_the_page_you_are_looking_for_can_not_be_found') !!}</h2>
<div class="entry-content clearfix">
<p><a onclick="goBack()" href="#">{!! Lang::get('lang.go_back') !!}</a></p>
</div><!-- .entry-content -->
</article><!-- .hentry -->
</div><!-- #page -->
<script>
function goBack() {
window.history.back();
}
</script>
@stop