@extends('mailcoach::landingPages.layouts.landingPage', [ 'title' => __mc('Manage preferences'), 'size' => 'max-w-lg' ]) @php($errors = new \Illuminate\Support\ViewErrorBag()) @section('landing')
@if ($updated ?? false) {{ __mc('Preferences updated successfully!') }} @endif

{!! __mc('Manage your personal information') !!}

@csrf
@csrf @if (count($tags))

{!! __mc('Manage your subscriptions') !!}

@foreach ($tags as $tag) {{ $tag->name }} @if ($tag->description)
{{ $tag->description }}
@endif
@endforeach
@else @endif
@endsection