@extends('layout.v2.error') @section('status_code','500') @section('status','Internal Server Error') @section('sub_title', trans('errors.error_occurred')) @section('content')

{{ trans('errors.error_not_recoverable') }}

{{ $exception->getMessage() ?? 'General unknown error' }}

{!! trans('errors.error_location', ['file' => $exception->getFile(), 'line' => $exception->getLine(), 'code' => $exception->getCode() ]) !!}

@if(!$debug)

{{ trans('errors.more_info') }}

{!! trans('errors.collect_info') !!} {!! trans('errors.collect_info_more') !!}

{{ trans('errors.github_help') }}

{!! trans('errors.github_instructions') !!}

  1. {{ trans('errors.use_search') }}
  2. {!! trans('errors.include_info', ['link' => route('debug') ]) !!}
  3. {{ trans('errors.tell_more') }}
  4. {{ trans('errors.include_logs') }}
  5. {{ trans('errors.what_did_you_do') }}
@endif @if($debug)

{{ trans('errors.error') }}

{!! trans('errors.error_location', ['file' => $exception->getFile(), 'line' => $exception->getLine(), 'code' => $exception->getCode() ]) !!}

{{ trans('errors.stacktrace') }}

{!! nl2br($exception->getTraceAsString()) !!}
@endif @endsection