@extends('errors::layout') @section('title', trans('app.error_title')) @section('message', trans('app.error_title')) @section('content') @if(isset($exception) && $exception->getMessage())

{{ $exception->getMessage() }}

@endif @if(Auth::check() && app()->bound('sentry') && config('monica.sentry_support') && ! empty(app('sentry')->getLastEventID()))
@lang('app.error_id', ['id' => app('sentry')->getLastEventID()])
@endif

{{ trans('auth.back_homepage') }}

@endsection