source: resources/views/auth/forgot.blade.php@ d25ba66

Last change on this file since d25ba66 was c433da6, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago

modified logo

  • Property mode set to 100644
File size: 1.7 KB
Line 
1@extends("layouts.auth")
2
3@section("title", "Forgot | TechnoBlog")
4
5@section("auth_content")
6 <div class="page">
7 <div class="page-single">
8 <div class="container">
9 <div class="row">
10 <div class="col-lg-12 text-center">
11 <img src="{{ asset("assets/images/logo.png") }}">
12 </div>
13 <div class="col col-login mx-auto pt-5 pb-7">
14 <form class="card" action="{{ route("auth.forgot") }}" method="post">
15
16 @csrf
17
18 <div class="card-body p-6">
19 <div class="card-title">Forgot password</div>
20
21 @if ($errors->any())
22 <div class="alert alert-danger">
23 <ul class="m-0 pl-2">
24 @foreach ($errors->all() as $error)
25 <li>{{ $error }}</li>
26 @endforeach
27 </ul>
28 </div>
29 @endif
30
31 @if(Session::has('forgotInfo'))
32 <div class="alert alert-success fade show" role="alert">
33 <strong> {{ Session::get('forgotInfo') }} </strong>
34 <button type="button" class="close" data-dismiss="alert" aria-label="Close">
35 </button>
36 </div>
37 @endif
38
39 <div class="form-group">
40 <label class="form-label" for="exampleInputEmail1">Email address</label>
41 <input type="email" name="email" class="form-control" id="" aria-describedby="emailHelp" placeholder="Enter email">
42 </div>
43 <div class="form-footer">
44 <button type="submit" class="btn btn-primary btn-block">Submit</button>
45 </div>
46 </div>
47 </form>
48 <div class="text-center text-muted">
49 Forget it,
50 <a href="{{ route("auth.loginShow") }}">send me back</a> to the sign in screen.
51 </div>
52 </div>
53 </div>
54 </div>
55 </div>
56 </div>
57@endsection
Note: See TracBrowser for help on using the repository browser.