31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('tajuk', 'Set Semula Kata Laluan')
|
|
@section('saiz-container', 'container-kecil')
|
|
|
|
@section('kandungan')
|
|
<div class="kad">
|
|
<h1>Set Semula Kata Laluan</h1>
|
|
|
|
@if ($errors->any())
|
|
<div class="makluman makluman-ralat">{{ $errors->first() }}</div>
|
|
@endif
|
|
|
|
<form method="POST" action="{{ route('password.update') }}">
|
|
@csrf
|
|
<input type="hidden" name="token" value="{{ $token }}">
|
|
|
|
<label for="email">E-mel</label>
|
|
<input type="email" id="email" name="email" value="{{ old('email', $email) }}" required autofocus>
|
|
|
|
<label for="password">Kata Laluan Baharu</label>
|
|
<input type="password" id="password" name="password" required minlength="8">
|
|
|
|
<label for="password_confirmation">Sahkan Kata Laluan Baharu</label>
|
|
<input type="password" id="password_confirmation" name="password_confirmation" required minlength="8">
|
|
|
|
<button type="submit" class="btn btn-penuh">Set Semula Kata Laluan</button>
|
|
</form>
|
|
</div>
|
|
@endsection
|