@extends('layouts.superadmin') @section('content')

Top Tasks

Add Task
@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(array('route' => 'portal.tasks.store','method'=>'POST')) !!} @include('admin.toptask.partials.form', ['task' => null])
{!! Form::close() !!}
@endsection