clara/resources/views/pages/auth/forgot-password.blade.php
Daeng Deni Mardaeni c73ea1b54c update metronic 8.2
2023-09-26 16:51:59 +07:00

42 lines
1.4 KiB
PHP

<x-auth-layout>
<!--begin::Form-->
<form class="form w-100" novalidate="novalidate" id="kt_password_reset_form" data-kt-redirect-url="{{ route('login') }}" action="{{ route('password.request') }}">
@csrf
<!--begin::Heading-->
<div class="text-center mb-10">
<!--begin::Title-->
<h1 class="text-dark fw-bolder mb-3">
Forgot Password ?
</h1>
<!--end::Title-->
<!--begin::Link-->
<div class="text-gray-500 fw-semibold fs-6">
Enter your email to reset your password.
</div>
<!--end::Link-->
</div>
<!--begin::Heading-->
<!--begin::Input group--->
<div class="fv-row mb-8">
<!--begin::Email-->
<input type="text" placeholder="Email" name="email" autocomplete="off" class="form-control bg-transparent" value="demo@demo.com"/>
<!--end::Email-->
</div>
<!--begin::Actions-->
<div class="d-flex flex-wrap justify-content-center pb-lg-0">
<button type="button" id="kt_password_reset_submit" class="btn btn-primary me-4">
@include('partials/general/_button-indicator', ['label' => 'Submit'])
</button>
<a href="{{ route('login') }}" class="btn btn-light">Cancel</a>
</div>
<!--end::Actions-->
</form>
<!--end::Form-->
</x-auth-layout>