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

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

{!! Form::open(['url' => action('NotificationTemplateController@store'), 'method' => 'post' ]) !!}

@lang('lang_v1.available_tags'):

{{implode(', ', $tags)}}

@lang('lang_v1.customer_notifications'):

@include('notification_template.partials.tabs', ['templates' => $customer_notifications])

@lang('lang_v1.supplier_notifications'):

@include('notification_template.partials.tabs', ['templates' => $supplier_notifications])
{!! Form::close() !!}
@stop @section('javascript') @endsection