@extends('admin.layouts.app') @section('title', t('admin.whatsapp.title')) @section('page_title', t('admin.whatsapp.title')) @section('content')
@if(session('success'))
{{ session('success') }}
@endif {{-- Settings --}}

{{ t('admin.whatsapp.settings') }}

@csrf @method('PUT')

{{ t('admin.whatsapp.token_hint') }}

{{-- Test Message --}}

{{ t('admin.whatsapp.test_title') }}

@csrf
{{-- Templates --}}

{{ t('admin.whatsapp.templates') }}

@if($templates->isEmpty())

{{ t('admin.whatsapp.no_templates') }}

@else
@foreach($templates as $tpl) @endforeach
{{ t('admin.whatsapp.key') }} {{ t('admin.whatsapp.meta_name') }} {{ t('admin.whatsapp.locale') }} {{ t('admin.whatsapp.active') }}
{{ $tpl->key }} {{ $tpl->meta_template_name }} {{ $tpl->locale_code }} @if($tpl->is_active) @else @endif
@endif
@endsection