-
@foreach($templates as $key => $value)
- first) class="active" @endif> {{ $value['name'] }} @endforeach
@foreach($templates as $key => $value)
@endforeach
@if(!empty($value['extra_tags']))
العلامات المتاحة:
@foreach($value['extra_tags'] as $tagsGroup)
@foreach($tagsGroup as $tag)
{{ $tag }}
@endforeach
@endforeach
@endif
{!! Form::label($key.'_subject', __('master::lang.subject').':') !!}
{!! Form::text("template_data[$key][subject]",
old("template_data.$key.subject", $notification?->subject ?? ''),
[
'class' => 'form-control',
'placeholder' => __('master::lang.subject'),
'id' => $key . '_subject'
]
) !!}
{!! Form::label($key.'_sms_body', __('master::lang.sms_body').':') !!}
{!! Form::textarea("template_data[$key][sms_body]",
old("template_data.$key.sms_body", $notification?->sms_body ?? ''),
[
'class' => 'form-control ckeditor',
'rows' => 6,
'placeholder' => __('master::lang.sms_body'),
'id' => $key . '_sms_body'
]
) !!}