PortIO/resources/views/index.blade.php

21 lines
365 B
PHP
Raw Normal View History

2023-03-14 14:33:06 +00:00
<!DOCTYPE html>
<html data-bs-theme="auto">
<head>
<title>{{ config('app.display_name') }}</title>
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta chrset="utf-8">
</head>
<body>
Index
@auth
<a href="{{ route('logout') }}">Logout</a>
@else
<a href="{{ route('login') }}">Login</a>
@endauth
</body>
</html>