@inject('doc_type_helper', 'App\Helpers\DocumentTypeHelper') {{ html()->modelForm($model->documents, 'POST', route('organization.tender-documents.store'))->id('form-validator')->acceptsFiles()->open() }}
Please speicify the list of documents need to submitted along with the proposal.
{{ ym_input([ 'label' => __('form.Document Title'), 'type' => 'text', 'name' => 'document_title[]', 'required' => true, 'value' => $model->document_title, ]) }}
{{ html()->closeModelForm() }}
{{-- --}} @forelse ($model->documents as $doc) {{-- --}} @empty @endforelse
{{ __('table.sn') }} Document Title Remarks Is Required ? {{ __('table.action') }}
{{ $loop->index + 1 }}. {{ $doc->document_title }} {{ $doc->remarks ?? '-' }} {{ config('dropdown.yes_no.' . $doc->is_require) }}
@csrf @method('DELETE')
{{ __('table.no_data') }}