@extends('layouts.master')
@section('title', 'Dashboard')
@section('links')
@endsection
@section('content')
{!! trans('messages.list_all') !!} {!! trans('messages.template') !!}
@if(Entrust::can('manage_template'))
{!! trans('messages.add_new') !!} {!! trans('messages.template') !!}
{!! Form::open(['route' => 'templates.store','role' => 'form', 'class'=>'email-template-form','id' => 'email-template-form','data-form-table' => 'template_table']) !!}
@include('admin.template._form')
{!! Form::close() !!}
@include('common.datatable',['col_heads' => $col_heads])
@endif
@endsection
@section('scripts')
@endsection