File tree Expand file tree Collapse file tree 5 files changed +24
-20
lines changed
Expand file tree Collapse file tree 5 files changed +24
-20
lines changed Original file line number Diff line number Diff line change 11<header class =" main-header" >
2-
3- <!-- Logo -->
42 <a href =" {{ url (' /admin' ) } }" class =" logo" >
53 <span class =" logo-mini" ><img src =" /images/logo-mini.png" style =" width : 100% ;" /></span >
64 <span class =" logo-lg" ><img src =" /images/logo.png" style =" width : 80% ;" /></span >
75 </a >
86
9- <!-- Header Navbar: style can be found in header.less -->
107 <nav class =" navbar navbar-static-top" role =" navigation" >
11- <!-- Sidebar toggle button-->
128 <a href =" #" class =" sidebar-toggle" data-toggle =" push-menu" role =" button" >
139 <span class =" sr-only" >Toggle navigation</span >
1410 </a >
15- <!-- Navbar Right Menu -->
11+
1612 <div class =" navbar-custom-menu" >
1713 <ul class =" nav navbar-nav" >
1814 <li class =" dropdown messages-menu" >
2218 </a >
2319 </li >
2420
25- <!-- Messages: style can be found in dropdown.less-->
2621 <li class =" dropdown messages-menu" >
2722 <a href =" #" class =" dropdown-toggle" data-toggle =" dropdown" >
2823 <i class =" fa fa-bell-o" ></i >
3934 </ul >
4035 </li >
4136
42- <!-- User Account: style can be found in dropdown.less -->
4337 <li class =" dropdown user user-menu" >
4438 <a href =" #" class =" dropdown-toggle" data-toggle =" dropdown" >
4539 <img src =" {{ profile_image () } }" class =" user-image" alt =" User Image" >
6963 <form id =" logout-form" action =" {{ route (' logout' ) } }" method =" POST" style =" display : none ;" >
7064 {{ csrf_field () } }
7165 </form >
72-
7366 </div >
7467 </li >
7568 </ul >
Original file line number Diff line number Diff line change 3232
3333 <div class =" row margin-top-10" >
3434 <div class =" col-xs-8" >
35- <a class =" btn btn-link" href =" {{ url ( ' /auth/password/ forgot' ) } }" style =" padding-left : 0 ;" >Forgot Password?</a >
35+ <a class =" btn btn-link" href =" {{ route ( ' forgot-password ' ) } }" style =" padding-left : 0 ;" >Forgot Password?</a >
3636 </div >
3737 <div class =" col-xs-4" >
3838 <button type =" submit" class =" btn btn-primary btn-block btn-flat btn-submit" >
3939 Sign In
40+ <i class =" fa fa-sign-in" ></i >
4041 </button >
4142 </div >
4243 </div >
Original file line number Diff line number Diff line change 2020 {!! form_error_message (' email' , $errors ) ! !}
2121 </section >
2222
23- <div class =" form-footer" style =" padding-bottom : 0px ;" >
24- <div class =" note" >
25- <a href =" {{ url (' /auth/login' ) } }" >I remembered my password!</a >
23+ <hr />
24+
25+ <div class =" row" >
26+ <div class =" col-md-6" >
27+ <div class =" note" >
28+ <a class =" btn btn-link" href =" {{ route (' login' ) } }" style =" padding-left : 0 ;" >I remembered my password!</a >
29+ </div >
2630 </div >
2731
28- <button type =" submit" class =" btn btn-primary btn-submit" >
29- <i class =" fa fa-refresh" ></i > Send Instructions
30- </button >
32+ <div class =" col-md-6" >
33+ <button type =" submit" class =" btn btn-primary btn-submit pull-right" >
34+ <i class =" fa fa-refresh" ></i > Send Instructions
35+ </button >
36+ </div >
3137 </div >
3238 </form >
3339 </div >
Original file line number Diff line number Diff line change 3737 {!! form_error_message (' password_confirmation' , $errors ) ! !}
3838 </section >
3939
40- <div class =" form-footer" style =" padding-bottom : 0px ;" >
41- <button type =" submit" class =" btn btn-primary btn-submit" >
42- <i class =" fa fa-refresh" ></i > Reset Password
43- </button >
40+ <hr />
41+
42+ <div class =" row" >
43+ <div class =" col-md-12" >
44+ <button type =" submit" class =" btn btn-primary btn-submit pull-right" >
45+ <i class =" fa fa-refresh" ></i > Reset Password
46+ </button >
47+ </div >
4448 </div >
4549 </form >
4650 </div >
Original file line number Diff line number Diff line change 4949 Route::get ('register/confirm/{token} ' , 'RegisterController@confirmRegister ' );
5050
5151 // password reset
52- Route::get ('password/forgot ' , 'ForgotPasswordController@showLinkRequestForm ' );
52+ Route::get ('password/forgot ' , 'ForgotPasswordController@showLinkRequestForm ' )-> name ( ' forgot-password ' ) ;
5353 Route::post ('password/email ' , 'ForgotPasswordController@sendResetLinkEmail ' );
5454 Route::get ('password/reset/{token} ' , 'ResetPasswordController@showResetForm ' )
5555 ->name ('password.reset ' );
You can’t perform that action at this time.
0 commit comments