29 lines
824 B
PHP
29 lines
824 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<main class="page">
|
|
<h2>LOGIN</h2>
|
|
|
|
@if (session('status'))
|
|
<div class="notice">{{ session('status') }}</div>
|
|
@endif
|
|
|
|
@error('username')
|
|
<div class="error">{{ $message }}</div>
|
|
@enderror
|
|
|
|
<form method="POST" action="{{ route('login.store') }}">
|
|
@csrf
|
|
|
|
<input type="text" name="username" value="{{ old('username') }}" placeholder="Username" required autofocus>
|
|
<input type="password" name="password" placeholder="Password" required>
|
|
|
|
<button type="submit">LOGIN</button>
|
|
</form>
|
|
|
|
<p class="subtitle" style="margin-top: 18px;">
|
|
<a href="{{ route('password.request') }}">Lupa kata laluan?</a>
|
|
</p>
|
|
</main>
|
|
@endsection
|