File "sms.blade.php"
Full Path: /home/trinadezambia/public_html/gambling/resources/views/admin/notification/template/sms.blade.php
File size: 2.74 KB
MIME-type: text/plain
Charset: utf-8
@extends('admin.layouts.app')
@push('topBar')
@include('admin.notification.top_bar')
@endpush
@section('panel')
@include('admin.notification.template.nav')
@include('admin.notification.template.shortcodes')
<form action="{{ route('admin.setting.notification.template.update',['sms',$template->id]) }}" method="post">
@csrf
<div class="row">
<div class="col-md-12">
<div class="card mt-4">
<div class="card-header bg--primary">
<h5 class="card-title text-white">@lang('SMS Template')</h5>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-8">
<div class="form-group">
<label>@lang('SMS Sent From')</label>
<input type="text" class="form-control" name="sms_sent_from" value="{{ $template->sms_sent_from }}">
<small class="text-primary"><i><i class="las la-info-circle"></i> @lang('Make the field empty if you want to use global template\'s name as sms sent from name.')</i></small>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>@lang('Status') <span class="text--danger">*</span></label>
<input type="checkbox" data-height="46px" data-width="100%" data-onstyle="-success"
data-offstyle="-danger" data-bs-toggle="toggle" data-on="@lang('Send SMS')"
data-off="@lang("Don't Send")" name="sms_status"
@if($template->sms_status) checked @endif>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<label>@lang('Message')</label>
<textarea name="sms_body" rows="10" class="form-control" placeholder="@lang('Your message using short-codes')" required>{{ $template->sms_body }}</textarea>
</div>
</div>
</div>
<button type="submit" class="btn btn--primary w-100 h-45">@lang('Submit')</button>
</div>
</div>
</div>
</div>
</form>
@endsection
@push('breadcrumb-plugins')
<x-back route="{{ route('admin.setting.notification.templates') }}" />
@endpush