39 lines
2.0 KiB
PHP
39 lines
2.0 KiB
PHP
@extends('layouts.auth')
|
|
|
|
@section('content')
|
|
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0">
|
|
<div class="w-full sm:max-w-md mt-6 px-6 py-4 bg-white shadow-md overflow-hidden sm:rounded-lg">
|
|
<div class="mb-4 text-sm text-gray-600">
|
|
{{ __('Lupa password? Tidak masalah. Cukup beritahu kami alamat email Anda dan kami akan mengirimkan tautan reset password yang memungkinkan Anda memilih yang baru.') }}
|
|
</div>
|
|
|
|
@if (session('status'))
|
|
<div class="mb-4 font-medium text-sm text-green-600">
|
|
{{ session('status') }}
|
|
</div>
|
|
@endif
|
|
|
|
<form method="POST" action="{{ route('password.email') }}">
|
|
@csrf
|
|
|
|
<!-- Email Address -->
|
|
<div>
|
|
<label for="email" class="block font-medium text-sm text-gray-700">Email</label>
|
|
<input id="email" class="block mt-1 w-full rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50" type="email" name="email" value="{{ old('email') }}" required autofocus>
|
|
@error('email')
|
|
<p class="mt-2 text-sm text-red-600">{{ $message }}</p>
|
|
@enderror
|
|
</div>
|
|
|
|
<div class="flex items-center justify-between mt-4">
|
|
<a href="{{ route('login') }}" class="text-sm text-gray-600 hover:text-gray-900">
|
|
<i class="fas fa-arrow-left mr-1"></i> Kembali ke Login
|
|
</a>
|
|
<button type="submit" class="inline-flex items-center px-4 py-2 bg-[#8B0000] border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-[#660000] focus:outline-none focus:border-[#8B0000] focus:ring ring-[#8B0000]/50 disabled:opacity-25 transition ease-in-out duration-150">
|
|
{{ __('Kirim Link Reset Password') }}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|