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.
13 lines
446 B
13 lines
446 B
@extends('layout') |
|
|
|
@section('body') |
|
<h1>Create a blog</h1> |
|
<form action="/blog/" method="post"> |
|
@csrf |
|
<p>Title</p><input name="title" type="text" value="{{ old('title') }}"> |
|
<p>Epilog</p><textarea name="epilog" type="text">{{ old('epilog') }}</textarea> |
|
<p>Content</p><textarea name="containt" type="text">{{ old('containt') }}</textarea> |
|
<br> |
|
<input type="submit"> |
|
</form> |
|
@endsection |