Added an account page for admin site

This commit is contained in:
Anders 2020-07-30 08:42:01 +02:00
parent 7f8b6a3222
commit 0ab41524c6
2 changed files with 41 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<img src="{{ URL::asset('/images/logos/Logo-hvid.svg') }}" class="h-100 brand" alt="Syddansk Erhvervsskole">
@auth
<a href="" class="btn btn-dark text-white m-0 ml-auto">Bruger: {{ ucfirst(Auth::user()->name_first) }} {{ ucfirst(Auth::user()->name_last) }}</a>
<a href="{{ route("users.account") }}" class="btn btn-dark text-white m-0 ml-auto">Bruger: {{ ucfirst(Auth::user()->name_first) }} {{ ucfirst(Auth::user()->name_last) }}</a>
<a href="{{ route('users.logout') }}" class="btn btn-dark text-white m-0 ml-1 mr-1">Log ud</a>
@else
<a href="{{ route('users.login') }}" class="btn btn-dark text-white m-0 ml-auto mr-1">Log ind</a>

View File

@ -0,0 +1,40 @@
@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
Account
@endsection
@section("path")
<a href="" class="text-white">Profil Oplysninger</a> /
@endsection
@section("content")
<table class="tbl mt-2">
<tr>
<th>Fornavn</th>
<th>Efternavn</th>
<th>Email</th>
<th>Tlf nr</th>
<th>Rolle(r)</th>
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
</tr>
<tr>
<td>{{ Auth::user()->name_first }}</td>
<td>{{ Auth::user()->name_last }}</td>
<td>{{ Auth::user()->email }}</td>
<td>{{ Auth::user()->phone }}</td>
<td>
@for($i = 0; $i < count(Auth::user()->roles); $i++)
@if(count(Auth::user()->roles)-1 != $i)
{{Auth::user()->roles[$i]->name}},
@else
{{Auth::user()->roles[$i]->name}}
@endif
@endfor
</td>
<td><a href="{{ route("users.edit", [ "user" => Auth::user()->id ]) }}"><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
</tr>
</table>
@endsection