@extends('layouts.app') @section('content')
Create a Topic
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif

All titles need to be unique.

@if ($errors->has('post'))
{{ $errors->first('post') }}
@endif
Feel free to use Markdown.


{{ csrf_field() }}
@endsection