2019-12-24 01:37:01 +01:00
|
|
|
@extends('layout.app')
|
|
|
|
|
|
|
|
@section('left-menu')
|
|
|
|
@parent
|
|
|
|
<ul>
|
2020-01-05 14:36:21 +01:00
|
|
|
<a href="/userprofile/edit"><li>Edytuj profil<img src="/img/left_menu_icon/edit.png"></li></a>
|
|
|
|
<a href="/userprofile/szkolenia"><li>Szkolenia<img src="/img/left_menu_icon/more.png"></li></a>
|
|
|
|
<a href="/userprofile/odznaczenia"><li>Odznaczenia<img src="/img/left_menu_icon/more.png"></li></a>
|
|
|
|
<a href="/userprofile/passwordchange"><li>Zmiana hasła<img src="/img/left_menu_icon/edit.png"></li></a>
|
2019-12-24 01:37:01 +01:00
|
|
|
</ul>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('center-area')
|
|
|
|
@parent
|
|
|
|
|
|
|
|
@if( auth()->check())
|
2019-12-26 16:04:17 +01:00
|
|
|
|
|
|
|
@if (\Session::has('success'))
|
|
|
|
<div class="alert alert-success">
|
|
|
|
<ul>
|
|
|
|
<li>{!! \Session::get('success') !!}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2019-12-24 01:37:01 +01:00
|
|
|
<p align='center'>
|
2020-01-30 17:34:16 +01:00
|
|
|
<table class='table'>
|
2019-12-24 01:37:01 +01:00
|
|
|
<tr>
|
2020-01-30 17:34:16 +01:00
|
|
|
<th>Imię i nazwisko:</th>
|
2019-12-24 01:37:01 +01:00
|
|
|
<td>{{ $userData->name }} {{ $userData->surname }}</td>
|
|
|
|
</tr>
|
2020-07-20 04:26:18 +02:00
|
|
|
<tr>
|
|
|
|
<th>Drugie imię:</th>
|
|
|
|
<td>{{ $userData->secondName}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Imię ojca i matki:</th>
|
|
|
|
<td>{{ $userData->fathersName}} {{ $userData->mothersName}}</td>
|
|
|
|
</tr>
|
2019-12-24 01:37:01 +01:00
|
|
|
<tr>
|
2020-01-30 17:34:16 +01:00
|
|
|
<th>PESEL:</th>
|
2019-12-24 01:37:01 +01:00
|
|
|
<td>{{ $userData->PESEL}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2020-07-20 04:26:18 +02:00
|
|
|
<th>Stopień:</th>
|
|
|
|
<td>{{ $userData->rank}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Funkcja:</th>
|
|
|
|
<td>{{ $userData->unitFunction}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Nr telefonu komórkowego:</th>
|
2019-12-24 01:37:01 +01:00
|
|
|
<td>{{ $userData->phoneNumber}}</td>
|
|
|
|
</tr>
|
2020-07-20 04:26:18 +02:00
|
|
|
<tr>
|
|
|
|
<th>Telefon domowy:</th>
|
|
|
|
<td>{{ $userData->homePhoneNumber}}</td>
|
|
|
|
</tr>
|
2019-12-24 01:37:01 +01:00
|
|
|
<tr>
|
2020-01-30 17:34:16 +01:00
|
|
|
<th>Adres e-mail:</th>
|
2019-12-24 01:37:01 +01:00
|
|
|
<td>{{ $userData->email}}</td>
|
|
|
|
</tr>
|
2020-07-20 04:26:18 +02:00
|
|
|
<tr>
|
|
|
|
<th>Adres zamieszkania:</th>
|
|
|
|
<td>{{ $userData->address}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Numer domu:</th>
|
|
|
|
<td>{{ $userData->apartment}}</td>
|
|
|
|
</tr>
|
2020-01-31 19:07:55 +01:00
|
|
|
{{-- <tr> --}}
|
|
|
|
{{-- <th>Numer ewidencyjny:</th> --}}
|
|
|
|
{{-- <td>{{ $userData->number}}</td> --}}
|
|
|
|
{{-- </tr> --}}
|
2019-12-24 01:37:01 +01:00
|
|
|
<tr>
|
2020-07-20 04:26:18 +02:00
|
|
|
<th>Miejsce urodzenia:</th>
|
|
|
|
<td>{{ $userData->placeOfBirth}}</td>
|
2019-12-24 01:37:01 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2020-07-20 04:26:18 +02:00
|
|
|
<th>Data wstąpienia do OSP:</th>
|
|
|
|
<td>{{ $userData->joiningOSPDate}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Seria i numer dowodu osobistego:</th>
|
|
|
|
<td>{{ $userData->IDSeries}} {{ $userData->IDNumber}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Dowód osobisty ważny do:</th>
|
|
|
|
<td>{{ $userData->IDValidUntil}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Numer legitymacji członkowskiej:</th>
|
|
|
|
<td>{{ $userData->identityCardNumber}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Prawo jazdy (kategorie):</th>
|
|
|
|
<td>{{ $userData->driversLicense}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Wykształcenie:</th>
|
|
|
|
<td>{{ $userData->education}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Zawód wyuczony:</th>
|
|
|
|
<td>{{ $userData->profession}}</td>
|
2019-12-24 01:37:01 +01:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</p>
|
|
|
|
@else
|
|
|
|
Brak autoryzacji
|
|
|
|
@endif
|
|
|
|
|
2020-01-05 14:36:21 +01:00
|
|
|
@stop
|