@extends('layouts.app') @section('title', 'What-If Analysis') @section('content')
Back to {{ $cropPlan->name }}

What-If Analysis

{{ $cropPlan->crop }} in {{ $cropPlan->location }} — compare different planting months side by side.

@csrf

Choose months to compare (select 2–5)

@foreach(range(1, 12) as $m)
planting_month ? 'checked' : '' }}>
@endforeach
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif Cancel
@endsection