@extends('layouts.app') @section('title', __('lang_v1.notification_templates')) @section('content')

{{ __('lang_v1.notification_templates')}}

{!! Form::open(['url' => action([\App\Http\Controllers\NotificationTemplateController::class, 'store']), 'method' => 'post' ]) !!}
@component('components.widget', ['class' => 'box-primary', 'title' => __('lang_v1.notifications') . ':']) @include('notification_template.partials.tabs', ['templates' => $general_notifications]) @endcomponent
@component('components.widget', ['class' => 'box-primary', 'title' => __('lang_v1.customer_notifications') . ':']) @include('notification_template.partials.tabs', ['templates' => $customer_notifications]) @endcomponent
@component('components.widget', ['class' => 'box-primary', 'title' => __('lang_v1.supplier_notifications') . ':']) @include('notification_template.partials.tabs', ['templates' => $supplier_notifications])

@lang('lang_v1.logo_not_work_in_sms'):

@endcomponent
{!! Form::close() !!}
@stop @section('javascript') @endsection