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

Top Tasks

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

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