<?php $__env->startSection('body2'); ?>

<h3>Payment Method</h3>
<hr>

<div class="row">
	<div class="col-md-12">
		<form method="post">
			<textarea class="summernote" name="shop_payment"><?php echo Auth::user()->profile->shop_payment; ?></textarea>
			<br><button class="btn btn-warning">Save Changes</button>
		</form>
	</div>
</div>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('status-message'); ?>

<?php if(Session::has('status') && Session::get('status') === true): ?>
<div class="alert msg">
  <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
  <strong>Payment Method Successfull Update</strong>
</div>
<?php endif; ?>
<?php if(Session::has('status') && !Session::get('status') ): ?>
<div class="alert msg">
  <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
  <strong>ERROR! Try again</strong>
</div>
<?php endif; ?>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('/member/template', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>