2017-06-11 22:16:29 +02:00

13 lines
465 B
PHP

@extends('layouts.app')
@section('title', 'Neue Veranstaltung')
@section('content')
<form>
<div class="form-group">
<label for="title">Veranstaltungsname</label>
<input type="text" class="form-control" id="title" aria-describedby="titleHelp" placeholder="Veranstaltungsnamen eingeben">
<small id="titleHelp" class="form-text text-muted">Die Bezeichnung der Veranstaltung, welcher in der Übersicht angezeigt wird.</small>
</div>
</form>
@endsection