fixed error pages
This commit is contained in:
@ -1,16 +1,16 @@
|
||||
@extends('layouts.admin')
|
||||
@extends('layouts.error')
|
||||
|
||||
@section('title', trans('errors.page_not_found'))
|
||||
@section('title', trans('errors.title.404'))
|
||||
|
||||
@section('content')
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h2 class="mb-0 text-yellow">404 Not Found</h2>
|
||||
<h2 class="mb-0 text-warning"><i class="fa fa-exclamation-triangle text-warning"></i> {{ trans('errors.header.404') }}</h2>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<h3><i class="fa fa-exclamation-triangle text-yellow"></i> {{ trans('errors.body.page_not_found') }}</h3>
|
||||
<p>{{ trans('errors.message.404') }}</p>
|
||||
|
||||
<p>{!! trans('errors.messages.page_not_found', ['link' => url('/')]) !!}</p>
|
||||
<a href="{{ url('/') }}" class="btn btn-success header-button-top"><span class="fa fa-tachometer-alt"></span> {{ trans('general.go_to', ['name' => trans('general.dashboard')]) }}</a>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
Reference in New Issue
Block a user