21 lines
569 B
PHP
21 lines
569 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<main class="page">
|
|
<h2>LOGIN</h2>
|
|
|
|
@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>
|
|
</main>
|
|
@endsection
|