From 563f5ac694b38a63c48ac228e09cd6f05e2c2e08 Mon Sep 17 00:00:00 2001
From: Frederikmillingpytlick <frederikpyt@gmail.com>
Date: Mon, 15 Jun 2020 11:29:38 +0200
Subject: [PATCH] Edited read.blade.php

---
 .../resources/views/admin/user/read.blade.php | 25 +++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/skolehjem/resources/views/admin/user/read.blade.php b/skolehjem/resources/views/admin/user/read.blade.php
index 008dd78..30b2995 100644
--- a/skolehjem/resources/views/admin/user/read.blade.php
+++ b/skolehjem/resources/views/admin/user/read.blade.php
@@ -5,6 +5,27 @@
     User - Read
 @endsection
 
-@section("content")
-
+@section("path")
+    <a href="" class="text-white">Vis Brugere</a> /
+@endsection
+
+@section("content")
+    <table class="tbl">
+        <tr>
+            <th>ID</th>
+            <th>Fornavn</th>
+            <th>Efternavn</th>
+            <th>Email</th>
+            <th>Tlf nr</th>
+            <th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
+        </tr>
+        <tr>
+            <td>{ID}</td>
+            <td>{Fornavn}</td>
+            <td>{Efternavn}</td>
+            <td>{Email}</td>
+            <td>{TLF}</td>
+            <td><a href=""><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
+        </tr>
+    </table>
 @endsection