@extends('layout.dashboard') @section('content')
{{ Lang::get('cachet.dashboard.dashboard') }}

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']) }}

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