2025-03-23 19:34:28 +00:00
|
|
|
@extends('layouts.guest')
|
2024-08-04 21:38:41 +00:00
|
|
|
|
|
|
|
|
@section('title', 'Writer Login')
|
|
|
|
|
|
|
|
|
|
@section('content')
|
2025-10-12 04:36:10 +00:00
|
|
|
<section id="writer-login">
|
2024-08-04 21:38:41 +00:00
|
|
|
<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
|