{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: index.blade.php ------------------------------------------------------ Use: The user's settings: the optional wallet PIN (enable, change, remove) and which events go out by SMS. ===================================================== --}} @extends('layouts.user') @section('title', __('front.settings.title')) @section('breadcrumb') @endsection @section('page')

{{ __('front.settings.title') }}

{{ __('front.settings.subtitle') }}

{{-- Info box --}}

{{ __('front.settings.info') }}

{{-- ===== PIN ===== --}}
{{ __('front.settings.pin.title') }} @if ($user->hasPin()) {{ __('front.settings.pin.status_on') }} @else {{ __('front.settings.pin.status_off') }} @endif

{{ __('front.settings.pin.desc') }}

@if (! $user->hasPin()) @else @endif
{{-- Physical-card services need the PIN turned on. --}}
{{ __('front.settings.pin.card_note') }}
{{-- Enable --}}
@csrf
{{-- Change --}}
@csrf
{{-- Remove --}}
@csrf
{{-- ===== Notifications ===== --}}
@csrf
{{ __('front.settings.notifications.title') }}

{{ __('front.settings.notifications.desc') }}

@foreach ($groups as $group) @endforeach
@endsection