@extends('layouts.admin') @section('page-title') @if (\Auth::user()->type == 'company') {{ __('Manage Email Templates') }} @else {{ __('Manage Email Templates') }} @endif @endsection @section('breadcrumb') @if (\Auth::user()->type == 'company') @else @endif @endsection @push('script-page') @endpush @section('content')
@foreach ($EmailTemplates as $EmailTemplate) @endforeach
{{ __('Name') }} {{ __('Action') }}
{{ $EmailTemplate->name }}
@if (\Auth::user()->type == 'super admin') @endif @if (\Auth::user()->type == 'company') @endif
@endsection