{!! Form::model(new App\Models\Task, ['route' => ['tasks.store'], 'class'=>'', 'role' => 'form']) !!}
{!! Form::text('name', NULL, array('id' => 'task-name', 'class' => 'mdl-textfield__input mdl-color-text--white')) !!} {!! Form::label('name', 'Task Name', array('class' => 'mdl-textfield__label mdl-color-text--white')); !!} Task name is required
{{--
{!! Form::select('completed', array('1' => 'Complete', '0' => 'Incomplete'), '0', array('class' => 'mdl-selectfield__select mdl-textfield__input mdl-color-text--white', 'id' => 'status')) !!} {!! Form::label('completed', 'Task Status', array('class' => 'mdl-textfield__label mdl-selectfield__label mdl-color-text--white')); !!}
--}}
{!! Form::textarea('description', NULL, array('id' => 'task-description', 'class' => 'mdl-textfield__input mdl-color-text--white')) !!} {!! Form::label('description', 'Task Description', array('class' => 'mdl-textfield__label mdl-color-text--white')); !!}
{!! Form::button('Create Task', array('class' => 'dialog-button-save mdl-button mdl-js-button mdl-js-ripple-effect mdl-color--primary mdl-color-text--white mdl-button--raised margin-bottom-1 margin-top-1 margin-top-0-desktop margin-right-1 padding-left-1 padding-right-1 ')) !!}
{!! Form::button('save', array('class' => 'dialog-button-icon-save mdl-button mdl-button--icon mdl-js-button mdl-js-ripple-effect mdl-button-colored', 'title' => 'Update Task')) !!}
@include('dialogs.dialog-save') {!! Form::close() !!}