/home2/mshostin/public_html/storage/framework/views/0a5630fe972e2df69b39f416d5abecef78733c87.php
<?php $__env->startSection('content'); ?>
<div class="container-fluid mt--7">
<div class="row">
<div class="col-xl-12 order-xl-1">
<div class="card">
<div class="card-header">
<div class="row align-items-center">
<div class="col-8">
<h3 class="mb-0"><?php echo e(__('Reference Management')); ?></h3>
</div>
<div class="col-4 text-right">
<a href="<?php echo e(route('reference.index')); ?>" class="btn btn-sm btn-primary"><?php echo e(__('Back to List')); ?></a>
</div>
</div>
</div>
<div class="card-body">
<form method="post" action="<?php echo e(route('reference.update', $ref)); ?>" autocomplete="off">
<?php echo csrf_field(); ?>
<?php echo method_field('put'); ?>
<h6 class="heading-small text-muted mb-4"><?php echo e(__('Reference information')); ?></h6>
<div class="pl-lg-4">
<div class="form-group<?php echo e($errors->has('name') ? ' has-danger' : ''); ?>">
<label class="form-control-label" for="input-name"><?php echo e(__('Name')); ?></label>
<input type="text" name="name" id="input-name" class="form-control form-control-alternative<?php echo e($errors->has('name') ? ' is-invalid' : ''); ?>" placeholder="<?php echo e(__('Name')); ?>" value="<?php echo e(old('name', $ref->name)); ?>" required autofocus>
<?php echo $__env->make('alerts.feedback', ['field' => 'name'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="form-group<?php echo e($errors->has('phone') ? ' has-danger' : ''); ?>">
<label class="form-control-label" for="input-phone"><?php echo e(__('Phone')); ?></label>
<input type="text" name="phone" id="input-phone" class="form-control form-control-alternative<?php echo e($errors->has('phone') ? ' is-invalid' : ''); ?>" placeholder="<?php echo e(__('Phone')); ?>" value="<?php echo e(old('phone', $ref->phone)); ?>" required>
<?php echo $__env->make('alerts.feedback', ['field' => 'phone'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="text-center">
<button type="submit" class="btn btn-success mt-4"><?php echo e(__('Save')); ?></button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', ['page' => 'Edit Reference', 'pageSlug' => 'reference', 'section' => 'reference'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htdocs\inventrySystem\resources\views/reference/edit.blade.php ENDPATH**/ ?>