You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
15 lines
597 B
15 lines
597 B
@extends('layout') |
|
|
|
@section('body') |
|
<h1>Register</h1> |
|
<form action="/register" method="post"> |
|
@csrf |
|
<p>Username</p><input name="username" type="text" value="{{ old('username') }}"> |
|
<p>Name</p><input name="name" type="text" value="{{ old('name') }}"> |
|
<p>Email</p><input name="email" type="email" value="{{ old('email') }}"> |
|
<p>Description</p><textarea name="description" type="text">{{ old('description') }}</textarea> |
|
<p>Password</p><input name="password" type="password" > |
|
<br> |
|
<input type="submit"> |
|
</form> |
|
@endsection |