@extends( ($theme =="white") ? 'layouts.white_theme': ( ($theme =="red") ? 'layouts.red_theme': (($theme =="green") ? 'layouts.green_theme': (($theme =="black") ? 'layouts.black_theme': ( ($theme =="blue") ?'layouts.blue_theme': 'layouts.yellow_theme' )))) ) @section('content')

{{ __('Email Templates') }}

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

{{ __('System Templates') }}

@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
@if($show_edit_button) @endif @foreach($system_emails as $email) @if (($email->status) == true) @else @endif @if($show_edit_button) @endif @endforeach
{{ __('Name') }} {{ __('Status') }}
{{ str_replace("_", " ", __($email->name))}}{{ __('enable') }}{{ __('desable') }}

@endif

{{ __('Custom Templates') }} @if($show_add_button) {{__('Add')}} @endif

@if (!count($custom_emails))

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

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

{{ __('Create new One') }}
@else
@if($show_edit_button || $show_delete_button) @endif @foreach($custom_emails as $email) @if ($email->status == true) @else @endif @if($show_edit_button || $show_delete_button) @endif @endforeach
{{ __('Name') }} {{ __('Status') }}
{{ str_replace("_", " ", __($email->name))}}{{ __('enable') }}{{ __('desable') }} @if($show_edit_button ) @endif @if($show_delete_button)
@method('DELETE') @csrf
@endif

@endif
@endsection