diff --git a/resources/views/auth/passwords/email.blade.php b/resources/views/auth/passwords/email.blade.php index 94570e9..9a25a65 100755 --- a/resources/views/auth/passwords/email.blade.php +++ b/resources/views/auth/passwords/email.blade.php @@ -1 +1,42 @@ -@extends('adminlte::auth.passwords.email') \ No newline at end of file +@extends('breadcrumbs.auth.main') + +@section('authpage') + +
+
+
+
+ +
+
+
+
+ {{ config('adminlte.logo') }} +
+ + @if(session('status')) +
+ {{ session('status') }} +
+ @endif + +
+ @csrf +
+ + +
+ + +
+ {{__('Back to login')}} + +
+
+
+
+
+@stop diff --git a/resources/views/auth/passwords/reset.blade.php b/resources/views/auth/passwords/reset.blade.php index c885797..05439e1 100755 --- a/resources/views/auth/passwords/reset.blade.php +++ b/resources/views/auth/passwords/reset.blade.php @@ -1 +1,85 @@ -@extends('adminlte::auth.passwords.reset') \ No newline at end of file +@extends('breadcrumbs.auth.main') + +@php( $password_reset_url = View::getSection('password_reset_url') ?? config('adminlte.password_reset_url', 'password/reset') ) + +@if (config('adminlte.use_route_url', false)) + @php( $password_reset_url = $password_reset_url ? route($password_reset_url) : '' ) +@else + @php( $password_reset_url = $password_reset_url ? url($password_reset_url) : '' ) +@endif + +@section('authpage') + +
+
+
+
+ +
+
+
+
+ {{ config('adminlte.logo') }} +
+ + @if(session('status')) +
+ {{ session('status') }} +
+ @endif + +
+ @csrf + {{-- Token field --}} + + + {{-- Email field --}} +
+ + + @if($errors->has('email')) +
+ {{ $errors->first('email') }} +
+ @endif +
+ + {{-- Password field --}} +
+ + @if($errors->has('password')) +
+ {{ $errors->first('password') }} +
+ @endif +
+ + {{-- Password confirmation field --}} +
+ + + @if($errors->has('password_confirmation')) +
+ {{ $errors->first('password_confirmation') }} +
+ @endif +
+ + +
+ {{__('Back to login')}} + +
+
+
+
+
+@stop