2019-01-31 17:09:59 +03:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
|
|
|
@section('title', trans('errors.page_not_found'))
|
|
|
|
|
|
|
|
@section('content')
|
2019-11-16 10:21:14 +03:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
<h2 class="mb-0 text-yellow">404 Not Found</h2>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<h3><i class="fa fa-exclamation-triangle text-yellow"></i> {{ trans('errors.body.page_not_found') }}</h3>
|
2019-01-31 17:09:59 +03:00
|
|
|
|
2019-11-16 10:21:14 +03:00
|
|
|
<p>{!! trans('errors.messages.page_not_found', ['link' => url('/')]) !!}</p>
|
|
|
|
</div>
|
2019-01-31 17:09:59 +03:00
|
|
|
</div>
|
|
|
|
@endsection
|