@extends('user.layout') @section('content')
{{ __('Mail_Templates') }}
@if (count($templates) == 0)

{{ __('NO_MAIL_TEMPLATE_FOUND') }}

@else
@foreach ($templates as $template) @endforeach
# {{ __('Email_Type') }} {{ __('Mail_Subject') }} {{ __('Action') }}
{{ $loop->iteration }} {{ __(str_replace('_', ' ', $template->email_type)) }} {{ $template->email_subject }} {{ __('Edit') }}
@endif
@endsection