@extends('layouts.admin') @section('page-title') {{__(' Notifications')}} @endsection @section('action-button')
@endsection @section('links') @if(\Auth::guard('client')->check()) @else @endif @endsection @push('css-page') @endpush @push('scripts') @endpush @section('content')
{{ __('Placeholders') }}
{{__('Variables')}}
@php $variables = json_decode($curr_noti_tempLang->variables); @endphp @if(!empty($variables) > 0) @foreach ($variables as $key => $var)

{{__($key)}} : {{ '{'.$var.'}' }}

@endforeach @endif
{{Form::model($curr_noti_tempLang,array('route' => array('notification-templates.update', [$currentWorkspace->slug, $curr_noti_tempLang->parent_id]), 'method' => 'PUT')) }}
{{Form::label('content',__('Notification Message'),['class'=>'form-label text-dark'])}} {{Form::textarea('content',$curr_noti_tempLang->content,array('class'=>'form-control summernote' ,'id'=>'summernote','required'=>'required','rows'=>'04','placeholder'=>'EX. Hello, {company_name}'))}} {{ __('A variable is to be used in such a way.')}} {{ __('Ex. Hello, {company_name}')}}

{{Form::hidden('lang',null)}}
{{ Form::close() }}
@endsection