File: /var/www/vhost/disk-apps/demo-telemedicina.teky.com.co/resources/views/payu/webcheckout.blade.php
<html>
<head>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<div class="container-fluid">
<form method="post" action="{{ $dataView['requestUrl'] }}">
<input name="merchantId" type="hidden" value="{{ $dataView['merchantId'] }}">
<input name="accountId" type="hidden" value="{{ $dataView['accountId'] }}">
<input name="description" type="hidden" value="{{ $dataView['description'] }}">
<input name="referenceCode" type="hidden" value="{{ $dataView['referenceCode'] }}">
<input name="amount" type="hidden" value="{{ $dataView['amount'] }}">
<input name="tax" type="hidden" value="{{ $dataView['tax'] }}">
<input name="taxReturnBase" type="hidden" value="{{ $dataView['taxReturnBase'] }}">
<input name="currency" type="hidden" value="{{ $dataView['currency'] }}">
<input name="signature" type="hidden" value="{{ $dataView['signature'] }}">
<input name="test" type="hidden" value="{{ $dataView['test'] }}">
<input name="buyerEmail" type="hidden" value="{{ $dataView['buyerEmail'] }}">
<input name="responseUrl" type="hidden" value="{{ $dataView['responseUrl'] }}">
<input name="confirmationUrl" type="hidden" value="{{ $dataView['confirmationUrl'] }}">
<div class="form-group">
<label for="view_mail">Descripción</label>
<input type="text" class="form-control" id="view_mail" value="{{$dataView['description']}}" readonly>
</div>
<div class="form-group">
<label for="view_mail">Email</label>
<input type="email" class="form-control" id="view_mail" value="{{$dataView['buyerEmail']}}" readonly>
</div>
<div class="form-group">
<label for="view_amount">Valor</label>
<input type="text" class="form-control" id="view_amount" value="{{$dataView['amount']}}" readonly>
</div>
<button type="submit" class="btn btn-primary" value="Realizar pago">Realizar pago</button>
</form>
</div>
</body>
</html>