@extends('admin.layouts.app') @section('title', t('admin.mail_templates.title')) @section('page_title', t('admin.mail_templates.title')) @section('content')
@if(session('success'))
{{ session('success') }}
@endif @forelse($grouped as $key => $templates)

{{ $key }}

@foreach($templates as $tpl)
@csrf @method('PUT')
{{ $tpl->locale_code }}
@if($tpl->placeholders)

{{ t('admin.mail_templates.placeholders') }}: {{ implode(', ', $tpl->placeholders) }}

@endif
@endforeach
@empty
{{ t('admin.mail_templates.no_templates') }}
@endforelse
@endsection