2020-06-15 06:56:21 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Bruger - Opret
|
|
|
|
@endsection
|
|
|
|
|
2020-06-15 09:28:37 +00:00
|
|
|
@section("path")
|
2020-06-17 09:28:48 +00:00
|
|
|
<a href="{{ route('users.create') }}" class="text-white">Opret Bruger</a> /
|
2020-06-15 09:28:37 +00:00
|
|
|
@endsection
|
|
|
|
|
2020-06-15 06:56:21 +00:00
|
|
|
@section("content")
|
|
|
|
<h1>Opret Bruger:</h1>
|
2020-06-22 12:53:00 +00:00
|
|
|
<form method="post" action="{{ route("users.store") }}">
|
2020-06-22 08:08:18 +00:00
|
|
|
@csrf
|
2020-06-15 06:56:21 +00:00
|
|
|
<label for="name_first">Fornavn:</label>
|
|
|
|
<input type="text" name="name_first" id="name_first" required>
|
|
|
|
<label for="name_last">Efternavn:</label>
|
|
|
|
<input type="text" name="name_last" id="name_last" required>
|
|
|
|
<label for="email">Email:</label>
|
|
|
|
<input type="email" name="email" id="email" required>
|
|
|
|
<label for="password1">Password:</label>
|
|
|
|
<input type="password" name="password" id="password1" required>
|
|
|
|
<label for="password2">Confirm Password:</label>
|
|
|
|
<input type="password" id="password2" required>
|
|
|
|
<label for="tel">Telefon nr:</label>
|
|
|
|
<input type="tel" name="phone" id="tel" required>
|
|
|
|
<input type="submit" class="btn btn-dark text-white" value="Opret">
|
|
|
|
</form>
|
|
|
|
@endsection
|