@extends('layouts.app') @section('title', 'Form Already Submitted') @section('content')
{{-- Warning icon --}}
⚠️
{{-- Heading & copy --}}

Form already submitted

A Compulsory Buying Form has already been submitted for @isset($order) Order #{{ $order->order_no }}. @else this order. @endisset You can’t submit another entry for the same order.

{{-- Meta (optional) --}}
    @isset($order->created_at)
  • Order date: {{ $order->created_at->format('d M Y, H:i') }}
  • @endisset @isset($existingFormSubmittedAt)
  • Form submitted: {{ \Carbon\Carbon::parse($existingFormSubmittedAt)->format('d M Y, H:i') }}
  • @endisset
{{-- Actions --}}
@isset($order) {{-- If you have a "view existing form" page, uncomment: --}} {{-- View existing form --}} Back to Order @endisset
@endsection