85 lines
3.1 KiB
PHP
85 lines
3.1 KiB
PHP
@extends('layouts.master')
|
|
@section('page-title')
|
|
Permits | {{ $page_title }}
|
|
@endsection
|
|
@section('page-css')
|
|
|
|
@endsection
|
|
@section('page-content')
|
|
@include('layouts.partials.permits-navbar')
|
|
<div class="container">
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
<div class="mb-4">
|
|
<h1 class="h3 mb-1">Permit Settings</h1>
|
|
<p class="text-muted">Update these settings as needed</p>
|
|
</div>
|
|
|
|
<form>
|
|
<!-- EMAIL SETTINGS CARD -->
|
|
<div class="card shadow-sm mb-4">
|
|
<div class="card-header bg-white py-3">
|
|
<h5 class="card-title mb-0 text-primary">
|
|
<i class="bi bi-envelope-fill me-2"></i>Email Notifications
|
|
</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="mb-3">
|
|
<label for="outgoingEmail" class="form-label fw-bold">Outgoing Email Address</label>
|
|
<input type="email" class="form-control" id="outgoingEmail" value="" placeholder="e.g. ppd@stma.gov.gh" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="displayName" class="form-label fw-bold">Display Name</label>
|
|
<input type="text" class="form-control" id="displayName" value="" placeholder="e.g. Physical Planning Department" required>
|
|
</div>
|
|
|
|
<hr class="my-4">
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- SMS SETTINGS CARD -->
|
|
<div class="card shadow-sm mb-4">
|
|
<div class="card-header bg-white py-3">
|
|
<h5 class="card-title mb-0 text-success">
|
|
<i class="bi bi-chat-left-text-fill me-2"></i>SMS Notifications
|
|
</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="mb-3">
|
|
<label for="userPhone" class="form-label fw-bold">Sender Name</label>
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" id="senderName" placeholder="e.g. STMA" value="">
|
|
</div>
|
|
</div>
|
|
|
|
<hr class="my-4">
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- SAVE / ACTIONS (Using Bootstrap 5 responsive block strategy) -->
|
|
<div class="d-grid gap-2 d-md-flex justify-content-md-end">
|
|
<button type="button" class="btn btn-outline-secondary px-4">Cancel</button>
|
|
<button type="submit" class="btn btn-primary px-4">Save Changes</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
@section('page-js')
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endsection |