diff --git a/src/Illuminate/Foundation/Exceptions/views/401.blade.php b/src/Illuminate/Foundation/Exceptions/views/401.blade.php index 5c586db96b52..16f1004f4f73 100644 --- a/src/Illuminate/Foundation/Exceptions/views/401.blade.php +++ b/src/Illuminate/Foundation/Exceptions/views/401.blade.php @@ -1,4 +1,4 @@ -@extends('errors::minimal') +@extends('errors.minimal') @section('title', __('Unauthorized')) @section('code', '401') diff --git a/src/Illuminate/Foundation/Exceptions/views/402.blade.php b/src/Illuminate/Foundation/Exceptions/views/402.blade.php index 3bc23efd2f3f..b220de12368d 100644 --- a/src/Illuminate/Foundation/Exceptions/views/402.blade.php +++ b/src/Illuminate/Foundation/Exceptions/views/402.blade.php @@ -1,4 +1,4 @@ -@extends('errors::minimal') +@extends('errors.minimal') @section('title', __('Payment Required')) @section('code', '402') diff --git a/src/Illuminate/Foundation/Exceptions/views/403.blade.php b/src/Illuminate/Foundation/Exceptions/views/403.blade.php index a5506f01f215..f1f838d414c6 100644 --- a/src/Illuminate/Foundation/Exceptions/views/403.blade.php +++ b/src/Illuminate/Foundation/Exceptions/views/403.blade.php @@ -1,4 +1,4 @@ -@extends('errors::minimal') +@extends('errors.minimal') @section('title', __('Forbidden')) @section('code', '403') diff --git a/src/Illuminate/Foundation/Exceptions/views/404.blade.php b/src/Illuminate/Foundation/Exceptions/views/404.blade.php index 7549540d8d91..4b7d8c09188f 100644 --- a/src/Illuminate/Foundation/Exceptions/views/404.blade.php +++ b/src/Illuminate/Foundation/Exceptions/views/404.blade.php @@ -1,4 +1,4 @@ -@extends('errors::minimal') +@extends('errors.minimal') @section('title', __('Not Found')) @section('code', '404') diff --git a/src/Illuminate/Foundation/Exceptions/views/419.blade.php b/src/Illuminate/Foundation/Exceptions/views/419.blade.php index c09216e212a4..39b6347bfafb 100644 --- a/src/Illuminate/Foundation/Exceptions/views/419.blade.php +++ b/src/Illuminate/Foundation/Exceptions/views/419.blade.php @@ -1,4 +1,4 @@ -@extends('errors::minimal') +@extends('errors.minimal') @section('title', __('Page Expired')) @section('code', '419') diff --git a/src/Illuminate/Foundation/Exceptions/views/429.blade.php b/src/Illuminate/Foundation/Exceptions/views/429.blade.php index f01b07b8ed2a..49095caf1cff 100644 --- a/src/Illuminate/Foundation/Exceptions/views/429.blade.php +++ b/src/Illuminate/Foundation/Exceptions/views/429.blade.php @@ -1,4 +1,4 @@ -@extends('errors::minimal') +@extends('errors.minimal') @section('title', __('Too Many Requests')) @section('code', '429') diff --git a/src/Illuminate/Foundation/Exceptions/views/500.blade.php b/src/Illuminate/Foundation/Exceptions/views/500.blade.php index d9e95d9b9988..a553a576ffe7 100644 --- a/src/Illuminate/Foundation/Exceptions/views/500.blade.php +++ b/src/Illuminate/Foundation/Exceptions/views/500.blade.php @@ -1,4 +1,4 @@ -@extends('errors::minimal') +@extends('errors.minimal') @section('title', __('Server Error')) @section('code', '500') diff --git a/src/Illuminate/Foundation/Exceptions/views/503.blade.php b/src/Illuminate/Foundation/Exceptions/views/503.blade.php index c5a9dde14e48..a07c3dd9ad73 100644 --- a/src/Illuminate/Foundation/Exceptions/views/503.blade.php +++ b/src/Illuminate/Foundation/Exceptions/views/503.blade.php @@ -1,4 +1,4 @@ -@extends('errors::minimal') +@extends('errors.minimal') @section('title', __('Service Unavailable')) @section('code', '503')