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

Edit Task

Edit Your Task
{!! Form::open(['route' => ['task/update'] ]) !!}
@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() !!}
@endsection