22 lines
573 B
PHP
22 lines
573 B
PHP
@extends('layouts.guest')
|
|
|
|
@section('title', 'Writer Login')
|
|
|
|
@section('content')
|
|
<section class="bubble-panel">
|
|
<h2>Writer Login</h2>
|
|
<form action="{{ route('authenticate') }}" method="POST">
|
|
|
|
@csrf
|
|
|
|
<label for="email">Email</label>
|
|
<input class="@error('email') is-invalid @enderror" type="text" name="email" />
|
|
|
|
<label for="password">Password</label>
|
|
<input class="@error('password') is-invalid @enderror" type="password" name="password" />
|
|
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</section>
|
|
@endsection
|