@extends('master.admin') @push('header.scripts') @stop @push('footer.scripts') @stop @section('content')

@if (count($errors) > 0)

Validation Errors!

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Add new Event
{!! Form::open(array('url' => 'admin/events', 'method'=>'POST', 'files'=>true)) !!} {!! csrf_field() !!}
{!! Form::file('logo', array('class' => 'form-control')) !!}
$
$
$
$

Registration Page Text

Cancel
{!! Form::close() !!}
@stop