aboutsummaryrefslogtreecommitdiffstats
path: root/resources/views/dashboard
diff options
context:
space:
mode:
authorLibravatar Michal Kostewicz <m.kostewicz84@gmail.com>2021-02-06 19:55:27 +0100
committerLibravatar Michal Kostewicz <m.kostewicz84@gmail.com>2021-02-06 19:55:27 +0100
commit21ba7b89c0b185ef1e6878ebd02df21af8c51ed6 (patch)
tree0dd176d1c5c2ccafae3a3904aef8364bf3bf9fb1 /resources/views/dashboard
parentMerge pull request #44 from xthursdayx/master (diff)
downloadferdium-server-21ba7b89c0b185ef1e6878ebd02df21af8c51ed6.tar.gz
ferdium-server-21ba7b89c0b185ef1e6878ebd02df21af8c51ed6.tar.zst
ferdium-server-21ba7b89c0b185ef1e6878ebd02df21af8c51ed6.zip
Add lastname column to User DB table and update API logic to save,return and update this data.
Diffstat (limited to 'resources/views/dashboard')
-rw-r--r--resources/views/dashboard/account.edge8
-rw-r--r--resources/views/dashboard/data.edge6
2 files changed, 14 insertions, 0 deletions
diff --git a/resources/views/dashboard/account.edge b/resources/views/dashboard/account.edge
index 9f3539e..6792615 100644
--- a/resources/views/dashboard/account.edge
+++ b/resources/views/dashboard/account.edge
@@ -38,6 +38,14 @@
38 </div> 38 </div>
39 </div> 39 </div>
40 <div class="mb-6"> 40 <div class="mb-6">
41 <label class="block text-gray-700 text-sm font-bold mb-2">Last Name</label>
42 <div>
43 <input
44 class="shadow appearance-none rounded w-full py-2 px-3 text-gray-700 mb-3 leading-tight focus:outline-none focus:shadow-outline"
45 type="text" value="{{ old('lastname', lastname) }}" placeholder="Last Name" name="lastname" required>
46 </div>
47 </div>
48 <div class="mb-6">
41 <label class="block text-gray-700 text-sm font-bold mb-2">E-Mail</label> 49 <label class="block text-gray-700 text-sm font-bold mb-2">E-Mail</label>
42 <div> 50 <div>
43 <input 51 <input
diff --git a/resources/views/dashboard/data.edge b/resources/views/dashboard/data.edge
index 60ef10b..92a78d4 100644
--- a/resources/views/dashboard/data.edge
+++ b/resources/views/dashboard/data.edge
@@ -123,6 +123,9 @@
123 Name 123 Name
124 </th> 124 </th>
125 <th> 125 <th>
126 Last Name
127 </th>
128 <th>
126 Order 129 Order
127 </th> 130 </th>
128 <th> 131 <th>
@@ -148,6 +151,9 @@
148 {{ workspace.name }} 151 {{ workspace.name }}
149 </td> 152 </td>
150 <td> 153 <td>
154 {{ workspace.lastname }}
155 </td>
156 <td>
151 {{ workspace.order }} 157 {{ workspace.order }}
152 </td> 158 </td>
153 <td> 159 <td>