<?php $__env->startSection('title'); ?>
    Edit <?php echo e($religion->name); ?>

<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
    <form action="<?php echo e(URL::action('ReligionController@postEditReligion')); ?>" method="POST">
        <?php echo csrf_field(); ?>

        <input type="hidden" name="religion_id" value="<?php echo e($religion->id); ?>">
        <div class="form-group">
            <label>Name</label>
            <input type="text" class="form-control" name="name" value="<?php echo e($religion->name); ?>">
        </div>
        <div class="form-actions text-center">
            <button type="submit" class=" btn btn-success">
                Update <?php echo e($religion->name); ?>

            </button>
        </div>
    </form>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>