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

{{ Form::open(['route' => 'tender_distribution.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', __('Tender Type'), ['class' => 'form-label']) }}* @error('tender_type')
{{ $message }}
@enderror
{{ Form::label('type', __('Status'), ['class' => 'form-label']) }}* @error('overall_status')
{{ $message }}
@enderror
{{ Form::label('type', __('Rev'), ['class' => 'form-label']) }}
{{ Form::label('received_on', __('Received On'), ['class' => 'form-label']) }}* {{ Form::date('received_on', old('received_on'), [ 'class' => 'form-control received_on' . ($errors->has('received_on') ? ' is-invalid' : '') ]) }} @error('received_on')
{{ $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', __('Project Description'), ['class' => 'form-label']) }}
{{-- --}} {{-- --}} {{-- --}} {{-- --}}
{{ __('Sl.no') }}{{ __('Main Tasks') }} {{ __('Sub Tasks') }} {{ __('Action By') }} {{ __('From') }} {{ __('To') }} {{ __('Cut-off Date') }} {{ __('Status') }}{{ __('Actual Comp') }}{{ __('Remarks') }} {{ __('Action') }}
{{ Form::close() }}
@include('new_layouts.footer')