@extends('adminlte::page') @section('title', 'Edit Tender') @section('content_header') @stop @section('content')

Edit Tender

Update Tender

@csrf
@if ($errors->has('notice_date'))

{{ $errors->first('notice_date') }}

@endif
@if ($errors->has('tender_date'))

{{ $errors->first('tender_date') }}

@endif
@if ($errors->has('tender_last_submission_date'))

{{ $errors->first('tender_last_submission_date') }}

@endif
@if ($errors->has('description'))

{{ $errors->first('description') }}

@endif
@if ($tender->file_upload_pdf)

Existing PDF: View PDF

@endif @if ($errors->has('file_upload_pdf'))

{{ $errors->first('file_upload_pdf') }}

@endif
@if (!empty($tender->file_upload_image))

Existing Image:

Tender Image @endif @if ($errors->has('file_upload_image'))

{{ $errors->first('file_upload_image') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@stop @section('js') @include('admin.tender.scripts.index') @stop