source: resources/views/web/organizer/profile.blade.php

Last change on this file was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 22 months ago
  • Initial commit;
  • Property mode set to 100644
File size: 1.1 KB
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>{{ $organizer->user->name }}</td>
19 </tr>
20 <tr>
21 <td><strong>Email</strong></td>
22 <td>{{ $organizer->user->email }}</td>
23 </tr>
24 <tr>
25 <td><strong>Home City & Country</strong></td>
26 <td>{{ $organizer->city }}, {{ $organizer->country }}</td>
27 </tr>
28 </tbody>
29 </table>
30 </div>
31 </div>
32 </div>
33@endsection
Note: See TracBrowser for help on using the repository browser.