@extends('layout')
@section('content')
Veranstaltung hinzufügen
{!! Form::open(['url' => 'admin/seating']) !!}
{!! Form::label('name', 'Name:') !!}
{!! Form::text('name',null,['class'=>'form-control']) !!}
Reihe zuweisen
Spalte zuweisen
{!! Form::submit('Speichern', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@endsection
@section('scripts')
@endsection