blob: 7001be3e6fc0e4e40b60b22819e1be1ea5fca383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<ul>
<li>name: {{ $player->name }}</li>
<li>team: {{ $player->team }}</li>
<li>score: {{ $player->score }}</li>
</ul>
<form method="POST" action="/login/score">
@csrf
<input type="hidden" name="id" value="{{ $player->id }}">
<div>
<label for="score">Score:</label>
<input name="score">
</div>
<button type="submit">submit</button>
</form>
|