@extends('layouts.app') @section('title', 'Edit template - ' . config('app.name')) @section('header-left')

Edit template

@endsection @section('content') @php $data = $template->template_data ?? []; $subtasksInitial = $data['subtasks'] ?? []; if (! count($subtasksInitial)) { $subtasksInitial = [['title' => '', 'priority' => 'medium', 'relative_due_days' => 1]]; } @endphp
@csrf @method('PATCH')
@error('name')

{{ $message }}

@enderror

Base task

@error('title')

{{ $message }}

@enderror

Subtasks

Due date when applying = start date + relative days.

@error('subtasks.*.title')

{{ $message }}

@enderror
Cancel
@push('scripts') @endpush @endsection