@extends('layout') @section('content')

{{ $project->title }}

{{ $project->description }}

Edit

@if($project->tasks->count())
@foreach ($project->tasks as $task)
@method('PATCH') @csrf
@endforeach
@endif
@csrf
@include('errors')
@endsection