diff --git a/src/Illuminate/Auth/Console/stubs/make/views/auth/login.stub b/src/Illuminate/Auth/Console/stubs/make/views/auth/login.stub index 07924ce66fae..a89d2f44fa9c 100644 --- a/src/Illuminate/Auth/Console/stubs/make/views/auth/login.stub +++ b/src/Illuminate/Auth/Console/stubs/make/views/auth/login.stub @@ -1,69 +1,69 @@ @extends('layouts.app') @section('content') -
-
-
-
-
Login
-
-
- {{ csrf_field() }} +
+
+
+
+
+

Login

+ + {!! csrf_field() !!} -
- +
+ -
- +
+ - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif + @if ($errors->has('email')) + + {{ $errors->first('email') }} + + @endif +
-
-
- +
+ -
- +
+ - @if ($errors->has('password')) - - {{ $errors->first('password') }} - - @endif + @if ($errors->has('password')) + + {{ $errors->first('password') }} + + @endif +
-
-
-
-
- +
+
+
+ +
-
-
-
- + -
- + +
-
@endsection diff --git a/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/email.stub b/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/email.stub index ad38245bd3c9..69a90dd0bf99 100644 --- a/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/email.stub +++ b/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/email.stub @@ -1,47 +1,46 @@ @extends('layouts.app') + @section('content') -
-
-
-
-
Reset Password
- -
- @if (session('status')) -
- {{ session('status') }} -
- @endif +
+
+
+
+
+

Reset Password

+ @if (session('status')) +
+ {{ session('status') }} +
+ @endif -
- {{ csrf_field() }} + + {!! csrf_field() !!} -
- +
+ -
- +
+ - @if ($errors->has('email')) - + @if ($errors->has('email')) + {{ $errors->first('email') }} - @endif + @endif +
-
-
-
- +
+
+ +
-
- + +
-
-
@endsection diff --git a/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/reset.stub b/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/reset.stub index 84ec0101610e..26f8c301b205 100644 --- a/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/reset.stub +++ b/src/Illuminate/Auth/Console/stubs/make/views/auth/passwords/reset.stub @@ -1,70 +1,70 @@ @extends('layouts.app') @section('content') -
-
-
-
-
Reset Password
+
+
+
+
+
+

Reset Password

-
-
- {{ csrf_field() }} + + {!! csrf_field() !!} - + -
- +
+ -
- +
+ - @if ($errors->has('email')) - + @if ($errors->has('email')) + {{ $errors->first('email') }} - @endif + @endif +
-
-
- +
+ -
- +
+ - @if ($errors->has('password')) - + @if ($errors->has('password')) + {{ $errors->first('password') }} - @endif + @endif +
-
-
- -
- +
+ +
+ - @if ($errors->has('password_confirmation')) - + @if ($errors->has('password_confirmation')) + {{ $errors->first('password_confirmation') }} - @endif + @endif +
-
-
-
- +
+
+ +
-
- + +
-
-
@endsection diff --git a/src/Illuminate/Auth/Console/stubs/make/views/auth/register.stub b/src/Illuminate/Auth/Console/stubs/make/views/auth/register.stub index 38eef838417d..67215eee68b2 100644 --- a/src/Illuminate/Auth/Console/stubs/make/views/auth/register.stub +++ b/src/Illuminate/Auth/Console/stubs/make/views/auth/register.stub @@ -1,77 +1,81 @@ @extends('layouts.app') @section('content') -
-
-
-
-
Register
+
+
+
+
+
+

Register

+
+ {!! csrf_field() !!} -
- - {{ csrf_field() }} +
+ -
- +
+ -
- - - @if ($errors->has('name')) - - {{ $errors->first('name') }} - - @endif + @if ($errors->has('name')) + + {{ $errors->first('name') }} + + @endif +
-
-
- +
+ -
- +
+ - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif + @if ($errors->has('email')) + + {{ $errors->first('email') }} + + @endif +
-
-
- +
+ -
- +
+ - @if ($errors->has('password')) - - {{ $errors->first('password') }} - - @endif + @if ($errors->has('password')) + + {{ $errors->first('password') }} + + @endif +
-
-
- +
+ + +
+ -
- + @if ($errors->has('password_confirmation')) + + {{ $errors->first('password_confirmation') }} + + @endif +
-
-
-
- +
+
+ +
-
- + +
-
-
@endsection diff --git a/src/Illuminate/Auth/Console/stubs/make/views/layouts/app.stub b/src/Illuminate/Auth/Console/stubs/make/views/layouts/app.stub index 8846226f59e8..5e7258f74d88 100644 --- a/src/Illuminate/Auth/Console/stubs/make/views/layouts/app.stub +++ b/src/Illuminate/Auth/Console/stubs/make/views/layouts/app.stub @@ -14,67 +14,56 @@ -
- +
+ + + @yield('content') -
- - +
+ + +