word-salad/resources/views/writer/dashboard.blade.php

15 lines
346 B
PHP
Raw Normal View History

@extends('layouts.writer')
@section('title', 'Writer Dashboard')
@section('content')
<div>
<h1>Writer's Dashboard</h1>
<form method="POST" action="{{ route('logout') }}">
@csrf
<button type="submit">Logout</button>
</form>
<a href="{{ route('new_article') }}"><button>New Article</button></a>
</div>
@endsection