@extends('errors.layout') @section('title', __('Error 403 - Unauthorized Access') ) @section('error-title', $exception->getMessage() ?: __('Access Forbidden') ) @section('code', '403') @section('message') @if($exception->getMessage()) {{-- Mensaje secundario cuando es un error especĂ­fico como el Captcha --}} {{ __('Please try refreshing the page or contact support if the problem persists.') }} @else {{-- Tu mensaje actual para errores de permisos reales --}} {{ __('You do not have the necessary permissions (role or capability) to view this page.') }} {{ __('Please contact the system administrator if you believe this is an error.') }} @endif @endsection