Update error pages
This commit is contained in:
parent
3784de855a
commit
e6f823da39
@ -1,8 +1,17 @@
|
||||
@extends('adminlte::layouts.errors')
|
||||
@extends('adminlte::layouts.app')
|
||||
|
||||
@section('htmlheader_title')
|
||||
{{ trans('adminlte_lang::message.servererror') }}
|
||||
@endsection
|
||||
@section('page_title')
|
||||
307
|
||||
@endsection
|
||||
|
||||
@section('contentheader_title')
|
||||
Not updated yet
|
||||
@endsection
|
||||
@section('contentheader_description')
|
||||
@endsection
|
||||
|
||||
@section('main-content')
|
||||
<div class="error-page">
|
||||
@ -11,8 +20,8 @@
|
||||
<h3><i class="fa fa-warning text-red"></i> Oops! Not updated yet!</h3>
|
||||
<p>
|
||||
That data is still on the old site. You'll be redirected in <b>5</b> seconds.<br>
|
||||
(You might be asked to login again.) <br>
|
||||
Here: <a href="{{ $exception->getMessage() }}"><b>{{ $exception->getMessage() }}</b></a><br>
|
||||
(You might be asked to login again.) <br><br>
|
||||
Here: <a href="{{ $exception->getMessage() }}"><b>{{ $exception->getMessage() }}</b></a><br><br>
|
||||
Back to <a href="{{ url('home') }}">home</a>
|
||||
</p>
|
||||
<br>
|
||||
|
@ -1,14 +1,24 @@
|
||||
@extends('adminlte::layouts.errors')
|
||||
@extends('adminlte::layouts.app')
|
||||
|
||||
@section('htmlheader_title')
|
||||
{{ trans('adminlte_lang::message.servererror') }}
|
||||
Bad Authentication
|
||||
@endsection
|
||||
@section('page_title')
|
||||
403
|
||||
@endsection
|
||||
|
||||
@section('contentheader_title')
|
||||
Authentication Required
|
||||
@endsection
|
||||
@section('contentheader_description')
|
||||
Authentication Failed
|
||||
@endsection
|
||||
|
||||
@section('main-content')
|
||||
<div class="error-page">
|
||||
<h2 class="headline text-red">403</h2>
|
||||
<div class="error-content">
|
||||
<h3><i class="fa fa-warning text-red"></i> Oops! Bad Authentication</h3>
|
||||
<h3><i class="fa fa-warning text-red pt-4"></i> Oops! Bad Authentication</h3>
|
||||
<p>
|
||||
Sorry, your authentication failed.<br>
|
||||
Message: <b>{{ $exception->getMessage() }}</b><br>
|
||||
|
@ -1,14 +1,24 @@
|
||||
@extends('adminlte::layouts.errors')
|
||||
@extends('adminlte::layouts.app')
|
||||
|
||||
@section('htmlheader_title')
|
||||
{{ trans('adminlte_lang::message.servererror') }}
|
||||
@endsection
|
||||
@section('page_title')
|
||||
500
|
||||
@endsection
|
||||
|
||||
@section('contentheader_title')
|
||||
{{ trans('adminlte_lang::message.servererror') }}
|
||||
@endsection
|
||||
@section('contentheader_description')
|
||||
{{ trans('adminlte_lang::message.somethingwrong') }}
|
||||
@endsection
|
||||
|
||||
@section('main-content')
|
||||
<div class="error-page">
|
||||
<h2 class="headline text-red">500</h2>
|
||||
<div class="error-content">
|
||||
<h3><i class="fa fa-warning text-red"></i> Oops! {{ trans('adminlte_lang::message.somethingwrong') }}</h3>
|
||||
<h3><i class="fa fa-warning text-red pt-4"></i> Oops! {{ $exception->getMessage() }}</h3>
|
||||
<p>
|
||||
{{ trans('adminlte_lang::message.wewillwork') }}
|
||||
{{ trans('adminlte_lang::message.mainwhile') }} <a href='{{ url('/home') }}'>{{ trans('adminlte_lang::message.returndashboard') }}</a>.
|
||||
|
Loading…
Reference in New Issue
Block a user