blob: b23dac0fc860d8ae9ac48c4bc1ee5458c3e61a03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html>
<head>
<title>Register</title>
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
</head>
<body>
<form method="POST" action="/register">
@csrf
<div>
<label for="name">Username:</label>
<input name="name" value="{{ old('name') }}">
</div>
<div>
<label for="password">Password:</label>
<input type="password" name="password" value="{{ old('password') }}">
</div>
@if($errors->any())
<div class="error">{{ $errors->first() }}</div>
@endif
<button type="submit">register</button>
</form>
</body>
</html>
|