@extends('layouts/app') @section('title') Novo Evento @endsection @section('stylesheets') @endsection @section('content')

Novo Evento

{!! Form::open(['action' => 'EventsController@store', 'method' => 'POST']) !!}
{{Form::label('title', 'Título')}} {{Form::text('title', '', ['class' => 'form-control', 'placeholder' => 'Título'])}}
{{Form::label('body', 'Texto')}} {{Form::textarea('body', '', ['id' => 'article-ckeditor', 'class' => 'form-control', 'placeholder' => 'Texto'])}}
{{Form::submit('Submeter', ['class' => 'button btn-primary'])}} {!! Form::close() !!}
@endsection @section('scripts') @endsection