top-up view UI fixed
This commit is contained in:
parent
07084d227d
commit
56d7fcba13
|
@ -3,11 +3,13 @@
|
|||
@section('page_title', 'View Top-Up')
|
||||
|
||||
@section('content')
|
||||
<div class="card-header border-0 bg-transparent py-2">
|
||||
<h5 class="mb-0 fw-bold text-dark" style="font-size: 1.25rem;">View Top-Up</h5>
|
||||
</div>
|
||||
<div class="container-fluid py-4">
|
||||
<div class="row justify-content-center">
|
||||
<div class="card-body p-3">
|
||||
<div class="card">
|
||||
<div class="card-header border-0 bg-transparent">
|
||||
<h5 class="mb-0">View Top-Up</h5>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Free Code</label>
|
||||
<input type="text" class="form-control" value="{{ $topup['freeCode'] }}" readonly>
|
||||
|
@ -24,26 +26,12 @@
|
|||
<label class="form-label">Type</label>
|
||||
<input type="text" class="form-control" value="{{ $topup['type'] }}" readonly>
|
||||
</div>
|
||||
<div class="d-flex justify-content-end mt-3">
|
||||
<a href="{{ route('top-up') }}" class="btn btn-outline-secondary">Back</a>
|
||||
<div class="text-end">
|
||||
<a href="{{ route('top-up') }}" class="btn btn-primary">Back</a>
|
||||
<a href="{{ route('top-up.edit', $topup['topup_uuid']) }}" class="btn btn-primary">Edit</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.card {
|
||||
border-radius: 5px;
|
||||
border: 1px solid #dee2e6;
|
||||
}
|
||||
.form-label {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
.form-control {
|
||||
font-size: 0.9rem;
|
||||
width: 100%;
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
</style>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
Loading…
Reference in New Issue