Skip to content

Commit

Permalink
Uppercase doctype
Browse files Browse the repository at this point in the history
In similar fashion as laravel/framework#28583
  • Loading branch information
realodix committed May 21, 2019
1 parent cebeee8 commit e8bc478
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/layouts/auth.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="UTF-8">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/backend.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/frontend.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
Expand Down

0 comments on commit e8bc478

Please sign in to comment.