* Re-publish Horizon assets * Updated horizon config file * Newest Horizon now works by using Laravel’s own auth * For now, remove test for admin login
12 lines
465 B
PHP
12 lines
465 B
PHP
@extends('master')
|
|
@section('title')Login @stop
|
|
|
|
@section('content')
|
|
<h2>Login</h2>
|
|
<form action="login" method="post">
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
|
<input type="text" name="name" placeholder="username">
|
|
<input type="password" name="password" placeholder="password">
|
|
<input type="submit" name="submit" value="Login">
|
|
</form>
|
|
@stop
|