forked from DarkGhostHunter/Larapass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lost.blade.php
33 lines (31 loc) · 1.27 KB
/
lost.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@extends('larapass::layout')
@section('title', trans('larapass::recovery.title'))
@section('body')
<form id="form" action="{{ route('webauthn.lost.send') }}" method="post">
@csrf
<h2 class="card-title h5 text-center">{{ trans('larapass::recovery.title') }}</h2>
<hr>
<p>{{ trans('larapass::recovery.description') }}</p>
@if($errors->any())
<div class="alert alert-danger small">
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@elseif(session('status'))
<div class="alert alert-success small">
{{ session('status') }}
</div>
@endif
<div class="form-group pb-3">
<label for="email">Email</label>
<input id="email" type="email" name="email" class="form-control" placeholder="john.doe@mail.com" required>
<small class="form-text text-muted">{{ trans('larapass::recovery.details') }}</small>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary btn-lg">{{ trans('larapass::recovery.button.send') }}</button>
</div>
</form>
@endsection