@extends('layouts.bootstrap') @section('title', 'Edit Bid - ' . $bid->company_name) @section('content')

Edit Bid

Back to Bids
Edit Bid Information
@csrf @method('PUT')
@error('company_name')
{{ $message }}
@enderror
@error('bid_value')
{{ $message }}
@enderror
@error('submitted_at')
{{ $message }}
@enderror
@error('notes')
{{ $message }}
@enderror
Cancel
Current Bid Status
Position #{{ $bid->position }} @if($bid->position == 1)

Leading Bid!
@endif
{{ $bid->getFormattedBidValue() }}
Current Bid Value
Submitted: {{ $bid->submitted_at->format('M d, Y h:i A') }}
Tender Information
{{ $tender->name }}

{{ $tender->reference_number }}

{{ $tender->getTotalProductsCount() }}
Products
৳{{ number_format($tender->budget, 0) }}
Budget
@if($tender->deadline)
Deadline: {{ $tender->deadline->format('M d, Y') }}
@endif
Competition
{{ $tender->getBidsCount() }}
Total Bids
{{ $tender->getLowestBid()->getFormattedBidValue() }}
Lowest Bid
Note: Changing the bid value will automatically recalculate positions for all bids.
@endsection