forked from s421507/eOSP2
29 lines
916 B
PHP
29 lines
916 B
PHP
|
<form action="/login" method="post">
|
||
|
Użytkownik
|
||
|
{{ csrf_field() }}
|
||
|
<div class="form-group">
|
||
|
<label for="title">Login</label>
|
||
|
<input type="text" class="form-control" id="userLogin" name="userLogin">
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="title">Hasło</label>
|
||
|
<input type="text" class="form-control" id="userPassword" name="userPassword">
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="title">Powtórz Hasło</label>
|
||
|
<input type="text" class="form-control" id="userPassword2" name="userPassword2">
|
||
|
</div>
|
||
|
|
||
|
@if ($errors->any())
|
||
|
<div class="alert alert-danger">
|
||
|
<ul>
|
||
|
@foreach ($errors->all() as $error)
|
||
|
<li>{{ $error }}</li>
|
||
|
@endforeach
|
||
|
</ul>
|
||
|
</div>
|
||
|
@endif
|
||
|
<button type="submit" class="btn btn-primary">Zaloguj</button>
|
||
|
</form>
|