1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-03-02 02:07:42 +01:00
2021-02-19 14:39:39 +01:00

18 lines
490 B
PHP

@extends('errors.base')
@section('title', tr("Pagina non trovata!"))
@section('error_color', 'warning')
@section('error_header', '404')
@section('error_message', tr('Oops! Pagina non trovata'))
@section('error_info', tr('Non siamo riusciti a trovare la pagina che stavi cercando'))
@section('js')
@if(\App\Http\Controllers\ConfigurationController::isConfigured() && !auth()->check())
<script>
location.href = "{{ route('login') }}";
</script>
@endif
@endsection