@extends('layouts.new_theme') @section('content')

{{ __('Email Templates') }}

@include('common.demo') @include('common.errors')

{{ __('System Templates') }} {{ __('Add Custom Template') }}

@if (!count($system_emails))

{{ __('No data found') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

@else
@foreach ($system_emails as $email) @if ($email->status == true) @else @endif @endforeach
{{ __('Name') }} {{ __('Status') }}
{{ str_replace('_', ' ', __($email->name)) }}{{ __('enable') }}{{ __('desable') }}

{{ $system_emails->appends($request->all())->links('pagination::bootstrap-4') }}
@endif

{{ __('Custom Templates') }}

@if (!count($custom_emails))

{{ __('No data found') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

@else
@foreach ($custom_emails as $email) @if ($email->status == true) @else @endif @endforeach
{{ __('Name') }} {{ __('Status') }}
{{ str_replace('_', ' ', __($email->name)) }} @if ($email->languages) ({{ $email->languages->language }}) @endif {{ __('enable') }}{{ __('disable') }}

@endif
@endsection