@extends('layouts.prestataire') @section('title', 'Modifier ma proposition') @section('styles') @endsection @section('content')
{{-- Breadcrumb --}} {{-- En-tête --}}
Mode modification

Modifier ma proposition

{{ $tender->title }}

{{ $tender->city }} {{ $tender->start_date ? $tender->start_date->format('d/m/Y') : 'Flexible' }}
@switch($response->status) @case('pending') En attente @break @case('viewed') Consultée @break @endswitch Envoyée {{ $response->created_at->diffForHumans() }}
{{-- Formulaire --}}
@csrf @method('PUT')
{{-- Colonne gauche --}}
{{-- Section Prix --}}

Votre tarif

{{-- Section Disponibilité --}}

Votre disponibilité

{{-- Section Message --}}

Votre message

/1000

{{-- Pièces jointes existantes --}} @if(count($response->attachments ?? []) > 0)

Pièces jointes actuelles

@foreach($response->attachments as $index => $attachment)
{{ basename($attachment) }}
@endforeach
@endif {{-- Nouvelles pièces jointes --}}

Ajouter des pièces jointes

{{-- Colonne droite - Résumé --}}

Modifications

Vous avez des modifications non enregistrées
Tarif proposé À négocier
Disponibilité

Zone de danger

@csrf @method('DELETE')
@endsection @section('scripts') @endsection