@extends('layouts.app') @section('title', 'Edit ' . $cropPlan->name) @section('content')
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PATCH')
Note: crop, location, and planting month cannot be changed after creation. Create a new plan if you need different parameters.
Cancel
{{-- Danger zone --}}

Danger Zone

Archive this plan
Hide it from your active plans list. You can still see it by filtering.
@csrf @method('PATCH')

Delete this plan
Permanently removes the plan and all its analysis history.
@csrf @method('DELETE')
@endsection