@extends('layouts.auth') @section('title', __('auth.verify_title') . ' — ' . config('app.name')) @section('form') @php $length = (int) config('smartcarb.otp.length', 6); $minutes = (int) ceil((int) config('smartcarb.otp.ttl_seconds') / 60); $masked = substr($phone, 0, 4) . str_repeat('*', max(0, strlen($phone) - 7)) . substr($phone, -3); @endphp {{ __('auth.portal_login') }}
{{ __('auth.verify_intro', ['length' => $length, 'phone' => $masked, 'minutes' => $minutes]) }}
{!! __('auth.resend_in', ['seconds' => '' . $cooldown . '']) !!}
@endif @endsection