@extends('errors.layout') @section('title', '500 — Internal Server Error') @section('content')
500

{{ __('Internal Server Error') }}

{{ __('Something went wrong on our end. Our team has been notified and is on it. Please try again in a moment.') }}

@if(isset($exception) && env('APP_DEBUG'))
{{ __('Error log (debug)') }}
{{ $exception->getMessage() }}
@endif
{{ __('Back to home') }} {{ __('Try again') }}
@endsection