@extends('layouts.users.app') @section('content')
{{-- ------------- ALERTS THIS VIEW ---------------------------------------------------------- --}}
@if (session('success')) @endif @if (session('error')) @endif
{{-- Header: Title & Status Badges --}}

Ticket #{{ $ticket->id }}

{{ ucfirst($ticket->status->label()) }} {{ ucfirst($ticket->stage->label()) }}

{{ __('Update Ticket Information') }}

{{ __('Modify the machine\'s technical specifications, pricing, and availability details.') }} {{ __('Ensure all changes are saved to keep the equipment record up to date.') }}

@if ($ticket->status === \App\Enums\PurchaseTicketStatusEnum::RETURNED)
@csrf @method('PATCH')
{{ __('Return corrected ticket') }}
@endif

{{ __('Administrative Observations') }}

{{ __('Please review the feedback left by the administration. Follow these instructions to provide the necessary information.') }}

@include('purchase-ticket.partials._observations-list')
@endsection