@extends('layouts.app') @section('title', 'Create Task |') @section('content')

Create New Task

Create Your Task
{!! Form::open(['route' => ['task/create'] ]) !!}
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('due_date'))

{{ $errors->first('due_date') }}

@endif
@if ($errors->has('description'))

{{ $errors->first('description') }}

@endif
{!! Form::close() !!}
@stack('scripts') @endsection