@include('new_layouts.header') @php $profile = \App\Models\Utility::get_file('uploads/avatar/'); @endphp

{{ Form::open(['route' => 'tender.store', 'method' => 'post', 'id' => 'tenderCreate', 'enctype' => 'multipart/form-data']) }}
@php $rndColor = Utility::rndRGBColorCode(); @endphp
{{ Form::label('project_name', __('Project Name'), ['class' => 'form-label']) }}* @error('project_name')
{{ $message }}
@enderror
{{ Form::label('type', __('Type'), ['class' => 'form-label']) }}* @error('tender_type')
{{ $message }}
@enderror
{{ Form::label('clarification_date', __('Clarification Date'), ['class' => 'form-label']) }}* {{ Form::date('clarification_date', old('clarification_date'), [ 'class' => 'form-control clarification_date' . ($errors->has('clarification_date') ? ' is-invalid' : '') ]) }} @error('clarification_date')
{{ $message }}
@enderror
{{ Form::label('dead_line', __('Tender Closing Date'), ['class' => 'form-label ']) }}* {{ Form::date('dead_line', old('dead_line'), [ 'class' => 'form-control dead_line' . ($errors->has('dead_line') ? ' is-invalid' : ''), 'required' => true ]) }} @error('dead_line')
{{ $message }}
@enderror
{{ Form::label('extension_date', __('Extension Date'), ['class' => 'form-label']) }} {{-- * --}} {{ Form::date('extension_date', null, ['class' => 'form-control extension_date']) }}
{{ Form::label('mc_comments', __('Overall Comments'), ['class' => 'form-label']) }}
{{ __('#') }} {{ __('Trade') }} {{ __('Sub Division') }} {{ __('Sub-Contractor') }} {{ __('Incharge') }} {{ __('Upload') }} {{ __('Comments') }} {{ __('Quote Before') }} {{ __('Action') }}
Upload
{{ __('#') }} {{ __('Trade') }} {{ __('Sub Division') }} {{ __('Incharge') }} {{ __('RFQ Upload') }} {{ __('Comments') }}       {{ __('SC Email/Co') }}                        {{ __('Quote Received') }} {{ __('Quote Before') }} {{ __('Action') }}
Upload
Upload
{{ Form::close() }}
@include('new_layouts.footer')