@extends('layouts.auth')
@section('title', 'Create Your PIN')
@section('auth-top')
@endsection
@section('content')
@if(session('otp_verified'))
Account Verified. Kindly Set Your Pass PIN
@endif
Back
Let's finish things up.
Please create a 6-digit access/login PIN
@if($errors->any())
{{ $errors->first() }}
@endif
@endsection
{{-- Success modal shown after successful PIN creation --}}
@if(session('registration_success'))
@push('scripts')
Registration successful!
Use your phone number and the PIN you created to access your account
Proceed to Login
@endpush
@endif