@extends('layouts.bootstrap') @section('title', 'Add New Bid - ' . $tender->name) @section('content')

Add New Bid

Back to Bids
Bid Information
@csrf
@error('company_name')
{{ $message }}
@enderror
@error('bid_value')
{{ $message }}
@enderror
@error('submitted_at')
{{ $message }}
@enderror
@error('notes')
{{ $message }}
@enderror
Cancel
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 @if($tender->hasBids())
Current Bids
{{ $tender->getBidsCount() }}
Total Bids
{{ $tender->getLowestBid()->getFormattedBidValue() }}
Lowest Bid
Leading: {{ $tender->getLowestBid()->company_name }}
@endif
Tips
  • Bid positions are automatically calculated
  • Lower bid values get better positions
  • You can edit bids after submission
@endsection