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-08-03 08:36:57 +00:00
|
|
|
{!! session()->get('error#notsamepass') !!}
|
2020-08-04 07:34:56 +00:00
|
|
|
{!! session()->get('EmailExists') !!}
|
|
|
|
{!! session()->get('PhoneExists') !!}
|
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>
|
2020-06-29 07:57:21 +00:00
|
|
|
<input type="text" name="name_first" id="name_first" placeholder="Fornavn" required>
|
2020-06-15 06:56:21 +00:00
|
|
|
<label for="name_last">Efternavn:</label>
|
2020-06-29 07:57:21 +00:00
|
|
|
<input type="text" name="name_last" id="name_last" placeholder="Efternavn" required>
|
2020-06-15 06:56:21 +00:00
|
|
|
<label for="email">Email:</label>
|
2020-06-29 07:57:21 +00:00
|
|
|
<input type="email" name="email" id="email" placeholder="x@y.z" required>
|
2020-08-07 08:51:10 +00:00
|
|
|
<label for="password1">Adgangskode:</label>
|
2020-08-03 08:36:57 +00:00
|
|
|
<div class="input-group text-left">
|
|
|
|
<input type="password" class="form-control" name="password" id="password1" placeholder="******" required>
|
|
|
|
<span class="fa fa-fw fa-eye field-icon toggle-password" id="fa-new" onclick="show('password1', 'fa-new')"></span>
|
|
|
|
</div>
|
2020-08-07 08:51:10 +00:00
|
|
|
<label for="password2">Bekræft Adgangskode:</label>
|
2020-08-03 08:36:57 +00:00
|
|
|
<div class="input-group text-left">
|
|
|
|
<input type="password" class="form-control" name="password2" id="password2" placeholder="******" required>
|
|
|
|
<span class="fa fa-fw fa-eye field-icon toggle-password" id="fa-confirm" onclick="show('password2', 'fa-confirm')"></span>
|
|
|
|
</div>
|
2020-06-15 06:56:21 +00:00
|
|
|
<label for="tel">Telefon nr:</label>
|
2020-06-29 07:57:21 +00:00
|
|
|
<input type="tel" name="phone" id="tel" placeholder="12345678" pattern="[0-9]{2}[0-9]{2}[0-9]{2}[0-9]{2}" required>
|
2020-06-30 11:22:02 +00:00
|
|
|
<label for="roles">Rolle:</label>
|
|
|
|
<select name="roles[]" id="roles" class="mb-2" multiple="multiple" required>
|
|
|
|
<option disabled selected value> -- Vælg Rolle(r) -- </option>
|
2020-07-01 07:27:54 +00:00
|
|
|
<option value="">Ingen Rolle</option>
|
2020-06-30 10:07:38 +00:00
|
|
|
@foreach($roles as $role)
|
|
|
|
<option value="{{ $role->name }}">{{ $role->name }}</option>
|
|
|
|
@endforeach
|
2020-06-30 06:03:42 +00:00
|
|
|
</select>
|
2020-06-15 06:56:21 +00:00
|
|
|
<input type="submit" class="btn btn-dark text-white" value="Opret">
|
|
|
|
</form>
|
|
|
|
@endsection
|
2020-08-03 08:36:57 +00:00
|
|
|
|
|
|
|
@section("scripts")
|
|
|
|
<script>
|
|
|
|
function show($passID, $faID) {
|
|
|
|
var inputPass = document.getElementById($passID);
|
|
|
|
var faEye = document.getElementById($faID);
|
|
|
|
|
|
|
|
if (inputPass.type === "password") {
|
|
|
|
inputPass.type = "text";
|
|
|
|
faEye.style.color = "#000";
|
|
|
|
} else {
|
|
|
|
inputPass.type = "password";
|
|
|
|
faEye.style.color = "#808080";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
@endsection
|