PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
resources
/
views
/
admin
/
sms_template
@extends('admin.layouts.app') @section('panel') <div class="row mb-none-30"> <div class="col-lg-12 col-md-12 mb-30"> <div class="card"> <div class="card-body"> <div class="table-responsive table-responsive--sm"> <table class="table align-items-center table--light"> <thead> <tr> <th>@lang('Short Code')</th> <th>@lang('Description')</th> </tr> </thead> <tbody> <tr> <th>@{{name}}</th> <td>@lang('Name')</td> </tr> <tr> <th>@{{message}}</th> <td>@lang('Message')</td> </tr> </tbody> </table> </div> </div> </div> </div> <div class="col-lg-12 col-md-12 mb-30"> <div class="card"> <div class="card-body"> <form action="{{ route('admin.sms.template.global') }}" method="POST"> @csrf <div class="card-body"> <div class="form-row"> <div class="form-group col-md-12"> <label>@lang('Global Template') <span class="text-danger">*</span></label> <input type="text" class="form-control" placeholder="@lang('SMS API Configuration')" name="sms_api" value="{{ $general->sms_api }}" required/> </div> </div> </div> <div class="card-footer"> <button type="submit" class="btn btn-block btn--primary mr-2">@lang('Submit')</button> </div> </form> </div> </div> </div> </div> {{-- TEST MAIL MODAL --}} <div id="testSMSModal" class="modal fade" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">@lang('Test Mail Setup')</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form action="{{ route('admin.sms.template.test.sms') }}" method="POST"> @csrf <input type="hidden" name="id"> <div class="modal-body"> <div class="form-row"> <div class="form-group col-md-12"> <label>@lang('Sent to') <span class="text-danger">*</span></label> <input type="text" name="mobile" class="form-control" placeholder="@lang('Moble')"> </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn--dark" data-dismiss="modal">@lang('Close')</button> <button type="submit" class="btn btn--success">@lang('Send')</button> </div> </form> </div> </div> </div> @endsection
[-] edit.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]
[-] sms_setting.blade.php
[edit]
[-] sms_template.blade.php
[edit]