Last change
on this file was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 2 years ago |
|
-
Property mode
set to
100644
|
File size:
939 bytes
|
Line | |
---|
1 | @extends('layouts.app')
|
---|
2 |
|
---|
3 | @section('content')
|
---|
4 | <div class="container">
|
---|
5 | <div class="row justify-content-center">
|
---|
6 | <div class="profile-container">
|
---|
7 | <h3 class="mb-3">My Profile</h3>
|
---|
8 | <table class="table">
|
---|
9 | <thead>
|
---|
10 | <tr>
|
---|
11 | <th scope="col">Property</th>
|
---|
12 | <th scope="col">Value</th>
|
---|
13 | </tr>
|
---|
14 | </thead>
|
---|
15 | <tbody>
|
---|
16 | <tr>
|
---|
17 | <td><strong>Name</strong></td>
|
---|
18 | <td>{{ $manager->user->name }}</td>
|
---|
19 | </tr>
|
---|
20 | <tr>
|
---|
21 | <td><strong>Email</strong></td>
|
---|
22 | <td>{{ $manager->user->email }}</td>
|
---|
23 | </tr>
|
---|
24 | </tbody>
|
---|
25 | </table>
|
---|
26 | </div>
|
---|
27 | </div>
|
---|
28 | </div>
|
---|
29 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.