19 lines
750 B
PHP
19 lines
750 B
PHP
@extends('layouts.error')
|
|
|
|
@section('title', trans('errors.title.404'))
|
|
|
|
@section('content')
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<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">
|
|
<p>{{ trans('errors.message.404') }}</p>
|
|
|
|
@php $landing_page = user() ? route(user()->landing_page) : route('login'); @endphp
|
|
|
|
<a href="{{ $landing_page }}" class="btn btn-success header-button-top"><span class="fa fa-tachometer-alt"></span> {{ trans('general.go_to', ['name' => trans_choice('general.dashboards', 1)]) }}</a>
|
|
</div>
|
|
</div>
|
|
@endsection
|