@extends('layout.dashboard') @section('content')
{{ Lang::get('cachet.dashboard.incident-add') }} > Create an Incident
@if($incident = Session::get('incident'))
@if($incident->isValid()) Awesome. Incident added. @else Whoops. Something went wrong with the incident. @endif
@endif {{ Form::open(['name' => 'IncidentForm', 'class' => 'form-vertical', 'role' => 'form']) }}

You may also use Markdown.
Cancel {{ Form::close() }}
@stop