@lang('common.update')
@lang('communicate.sms_template')
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'sms-template-new-store', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
[student_name] [parent_name] [due_amount] [fees_name] [due_date] [school_name]
@if($errors->has('dues_fees_message_sms'))
{{ $errors->first('dues_fees_message_sms') }}
@endif
[student_name] [parent_name] [number_of_subject] [subject_list] [due_date]
@if($errors->has('student_absent_notification_sms'))
{{ $errors->first('student_absent_notification_sms') }}
@endif
@php
$tooltip = "";
if(userPermission("sms-template-new-store")){
$tooltip = "";
}else{
$tooltip = "You have no permission to add";
}
@endphp
{{ Form::close() }}