diff options
Diffstat (limited to 'resources/views/login.blade.php')
-rw-r--r-- | resources/views/login.blade.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/resources/views/login.blade.php b/resources/views/login.blade.php index d5a528d..9f30bf7 100644 --- a/resources/views/login.blade.php +++ b/resources/views/login.blade.php @@ -1,3 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <title>Login</title> + <link rel="stylesheet" href="{{ asset('css/app.css') }}"> +</head> +<body> <form method="POST" action="/login"> @csrf @@ -6,5 +13,16 @@ <input name="name"> </div> + <div> + <label for="password">Password:</label> + <input type="password" name="password"> + </div> + + @if($errors->any()) + <div class="error">{{ $errors->first() }}</div> + @endif + <button type="submit">login</button> </form> +</body> +</html> |