<?php $__env->startSection('content_header'); ?>
    <?php echo notifyCss(); ?>
    <?php echo notifyJs(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
    <div class="row">
        <div class="col-12">
            <div class="card">
                <div class="card card-primary">
                    <div class="card-header">
                        <h3 class="card-title">Material Type</h3>
                    </div>
                    <?php echo $__env->make('notify::messages', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                    <!-- /.card-header -->
                    <!-- form start -->
                    <form id="userregform" class="form-horizontal" action="<?php echo e(URL::to('/show_material_type_post')); ?>" method="post" autocomplete="off" enctype="multipart/form-data">
                        <?php echo e(csrf_field()); ?>

                        <div class="card-body">
                            <div class="col-6">
                                <div class="form-group row">
                                    <div class="col-3">
                                        <label for="exampleInputEmail1">Organisation</label>
                                    </div>
                                    <div class="col-3">
                                        <?php echo e($material_types->organisation->organisation_name); ?>

                                    </div>
                                </div>
                                <div class="form-group row">
                                    <label for="exampleInputEmail1">Material Type Name</label>
                                    <input type="text" class="form-control" id="material_type_name" name="material_type_name" placeholder="Enter Material Type Name" required value="<?php echo e($material_types->material_type_name); ?>">
                                    <input type="hidden" name="material_type_id" id="material_type_id" value="<?php echo e($material_types->id); ?>">
                                </div>
                                <div class="form-group row">
                                    <label for="exampleInputEmail1">Material Type Complexity</label>
                                    <select name="material_type_complexity" id="material_type_complexity" class="form-control" required>
                                        <option value="">Select Material Type Complexity</option>
                                        <option value="1" <?php echo e($material_types->material_type_complexity === 1 ? 'selected' : ''); ?>> Beginner </option>
                                        <option value="2" <?php echo e($material_types->material_type_complexity === 2 ? 'selected' : ''); ?>> Medium </option>
                                        <option value="3" <?php echo e($material_types->material_type_complexity === 3 ? 'selected' : ''); ?>> Expert </option>
                                    </select>
                                </div>
                                <div class="form-group row">
                                    <label for="exampleInputEmail1">Remarks</label>
                                    <input type="text" class="form-control" id="remarks" name="remarks" placeholder="Enter Remarks" value="<?php echo e($material_types->remarks); ?>">
                                </div>
                            </div>
                            
                        </div>
                        <!-- /.card-body -->

                        <div class="card-footer">
                          <button type="submit" class="btn btn-primary">Submit</button>
                        </div>
                    </form>
                </div>
            </div>
        </div>
    </div>
    <script type="text/javascript">
        
    </script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('adminlte::page', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH E:\xampp7.3\htdocs\kmportal\resources\views/Admin/Settings/show_material_type.blade.php ENDPATH**/ ?>