{!! Form::open(['name'=>'addprojectfrm', 'id'=>'addprojectfrm', 'route' => 'projects.store', 'method' => 'post', 'files' => true]) !!}
{!! Form::label('insurance', 'Insurance', ['for' => 'insurance']) !!} {!! Form::textarea('insurance', '',['cols' => "50", 'class'=>'form-control text-editor']) !!} @if($errors->has('insurance')) {{ $errors->first('insurance') }} @else @enderror
{!! Form::label('document_path', 'Insurance Document *', ['for' => 'insurance_doc']) !!}
{!! Form::file('document_path',['id' => 'insurance_doc', 'class'=>'custom-file-input']) !!} {!! Form::label('document_path', 'Choose file', ['class' => 'custom-file-label']) !!}
Tendor Bond
{!! Form::label('tender_bond ', 'Tender Bond *', ['for' => 'tender_bond']) !!} {!! Form::textarea('tender_bond', '',['cols' => "50", 'class'=>'form-control text-editor']) !!} @if($errors->has('submission')) {{ $errors->first('tender_bond') }} @else @enderror
{!! Form::label('document_path', 'Tender Bond Document *', ['for' => 'tender_bond_doc']) !!}
{!! Form::file('document_path',['id' => 'tender_bond_doc', 'class'=>'custom-file-input']) !!} {!! Form::label('document_path', 'Choose file', ['class' => 'custom-file-label']) !!}
Miscellaneous Items
{!! Form::label('miscellaneous ', 'Miscellaneous *', ['for' => 'miscellaneous']) !!} {!! Form::textarea('miscellaneous', '',['cols' => "50", 'class'=>'form-control text-editor']) !!} @if($errors->has('miscellaneous')) {{ $errors->first('miscellaneous') }} @else @enderror
{!! Form::label('document_path', 'Miscellaneous Document *', ['for' => 'miscellaneous_doc']) !!}
{!! Form::file('document_path',['id' => 'miscellaneous_doc', 'class'=>'custom-file-input']) !!} {!! Form::label('document_path', 'Choose file', ['class' => 'custom-file-label']) !!}
Cancel
{!! Form::close() !!}