source: resources/views/auth/passwords/email.blade.php@ dfae77e

Last change on this file since dfae77e was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 22 months ago
  • Initial commit;
  • Property mode set to 100644
File size: 2.1 KB
Line 
1@extends('layouts.app')
2
3@section('content')
4 <div class="container">
5 <div class="row justify-content-center">
6 <div class="col-md-8">
7 <div class="card">
8 <div class="card-header">{{ __('Reset Password') }}</div>
9
10 <div class="card-body">
11 @if (session('status'))
12 <div class="alert alert-success" role="alert">
13 {{ session('status') }}
14 </div>
15 @endif
16
17 <form method="POST" action="{{ route('password.email') }}">
18 @csrf
19
20 <div class="row mb-3">
21 <label for="email"
22 class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
23
24 <div class="col-md-6">
25 <input id="email" type="email"
26 class="form-control @error('email') is-invalid @enderror" name="email"
27 value="{{ old('email') }}" required autocomplete="email" autofocus>
28
29 @error('email')
30 <span class="invalid-feedback" role="alert">
31 <strong>{{ $message }}</strong>
32 </span>
33 @enderror
34 </div>
35 </div>
36
37 <div class="row mb-0">
38 <div class="col-md-6 offset-md-4">
39 <button type="submit" class="btn btn-primary">
40 {{ __('Send Password Reset Link') }}
41 </button>
42 </div>
43 </div>
44 </form>
45 </div>
46 </div>
47 </div>
48 </div>
49 </div>
50@endsection
Note: See TracBrowser for help on using the repository browser.