project-ta/resources/views/auth/forgot.blade.php

10 lines
306 B
PHP

@extends('layouts.auth')
@section('content')
<form method="POST" action="{{ route('password.sendOtp') }}">
@csrf
<input type="email" name="email" placeholder="Masukkan Email" class="form-control">
<button class="btn btn-primary mt-2">Kirim OTP</button>
</form>
@endsection