@extends(auth()->guard('admin')->check() ? 'templates.bento.blades.admin.layouts.admin' : 'templates.bento.blades.layouts.user') @section('content')
{{-- Hero Illustration/Icon --}}
{{-- Main Message --}}

{{ __('Coming') }} {{ __('Soon') }}

{{ __('This feature is currently under development. Our team is working hard to bring this functionality to you soon.') }}

{{-- Actions --}}
{{-- Debug Info (Local/Staging only) --}} @if ($is_local)

{{ __('Debug Information') }}

@if ($controller)
{{ __('Controller') }} {{ $controller }}
@endif @if ($method)
{{ __('Method') }} {{ $method . '()' }}
@endif
{{ __('Exception Message') }}

{{ $message }}

{{ __('Note: This debug panel is only visible in local and staging environments.') }}
{{ app()->environment() }}
@endif
@endsection