Files
airtime-reseller/resources/views/merchants/showchangepin.blade.php
Kwesi Banson Jnr 2cfcfade4e Initial commit
2026-08-04 14:50:01 +00:00

54 lines
1.8 KiB
PHP

@extends('merch_layouts.merch_master')
@section('page-title')
Merchant | Refunds
@endsection
@section('page-content')
<div class="row">
<div class="col-md-6">
<div class="hpanel hblue">
<div class="panel-heading hbuilt">Dealer Refund</div>
<div class="panel-body">
<!-- -->
<form action="{{ url('merchant/change-pin') }}" method="POST" class="form-horizontal" id="changePinForm">
{{ csrf_field() }}
<input type="hidden" name="merchant_id" value="{{ $merchant->id }}">
<div class="col-md-12" style="padding-bottom: 10px;">
@include('commons.notifications')
</div>
<div class="form-group">
<label class="col-md-3 control-label">Current PIN</label>
<div class="col-md-7">
<input type="password" class="form-control" name="current_pin" placeholder="Current PIN" required>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">New PIN</label>
<div class="col-md-7">
<input type="password" class="form-control" name="new_pin" placeholder="New PIN" required>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
<div class="col-sm-12">
<button class="btn btn-warning btn-block" type="submit"><i class="fa fa-save"></i> Change PIN</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
@endsection
@section('page-js')
<script src="{{ url('public/js/merchant_landing.js') }}"></script>
<script>
</script>
@endsection