forked from s421507/eOSP2
Prześlij pliki do 'resources/views'
This commit is contained in:
parent
c8ef0585a9
commit
4cd4553e61
@ -27,7 +27,6 @@
|
||||
{{-- <input type="text" class="form-control" id="userEmail" name="userEmail">--}}
|
||||
{{-- </div>--}}
|
||||
|
||||
{{-- <div class="form-group">--}}
|
||||
{{-- <label for="title">Numer telefonu</label>--}}
|
||||
{{-- <input type="text" class="form-control" id="userPhone" name="userPhone">--}}
|
||||
{{-- </div>--}}
|
||||
@ -64,39 +63,54 @@
|
||||
{{ csrf_field() }}
|
||||
<div class="form-group">
|
||||
<label for="name">Imię:</label>
|
||||
<input type="text" class="form-control" id="name" name="name">
|
||||
<input type="text" class="form-control" id="name" name="name" value="{{ old('name') }} ">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="name">Nazwisko:</label>
|
||||
<input type="text" class="form-control" id="surname" name="surname">
|
||||
<input type="text" class="form-control" id="surname" name="surname" value="{{ old('surname') }}">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="name">Login:</label>
|
||||
<input type="text" class="form-control" id="login" name="login">
|
||||
<input type="text" class="form-control" id="login" name="login" value="{{ old('login') }}">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="name">Pesel:</label>
|
||||
<input type="text" class="form-control" id="PESEL" name="PESEL">
|
||||
<input type="text" class="form-control" id="PESEL" name="PESEL" value="{{ old('PESEL') }}">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="name">Numer telefonu:</label>
|
||||
<input type="text" class="form-control" id="phoneNumber" name="phoneNumber">
|
||||
<input type="text" class="form-control" id="phoneNumber" name="phoneNumber" value="{{ old('phoneNumber') }}">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="email">Email:</label>
|
||||
<input type="email" class="form-control" id="email" name="email">
|
||||
<label for="email">Adres e-mail:</label>
|
||||
<input type="email" class="form-control" id="email" name="email" value="{{ old('email') }}">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="password">Password:</label>
|
||||
<label for="password">Hasło:</label>
|
||||
<input type="password" class="form-control" id="password" name="password">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="password_confirmation">Powtórz hasło:</label>
|
||||
<input type="password" class="form-control" id="password_confirmation" name="password_confirmation">
|
||||
</div>
|
||||
|
||||
@if ($errors->any())
|
||||
<div class="alert alert-danger">
|
||||
<ul>
|
||||
@foreach ($errors->all() as $error)
|
||||
<li>{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="form-group">
|
||||
<button style="cursor:pointer" type="submit" class="btn btn-primary">Submit</button>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user