28 lines
735 B
PHP
28 lines
735 B
PHP
@extends('layout.base')
|
|
|
|
@section("title")
|
|
Opret Bruger
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div>
|
|
<form action="{{ route("users.store") }}" method="post">
|
|
@csrf
|
|
|
|
<label for="name_first">First Name</label>
|
|
<input id="name_first" type="text" name="name_first">
|
|
|
|
<label for="name_last">Last Name</label>
|
|
<input id="name_last" type="text" name="name_last">
|
|
|
|
<label for="email">Email</label>
|
|
<input id="email" type="email" name="email">
|
|
|
|
<label for="password">Password</label>
|
|
<input id="password" type="password" name="password">
|
|
|
|
<input type="submit" value="Opret">
|
|
</form>
|
|
</div>
|
|
@endsection
|