@extends('layouts.landing', ['title' => 'Account - OTP Verification']) @section('content')

{{ __('otp.title', ['type' => $type == 'email' ? 'Email' : 'Phone']) }}

{{-- error message --}} @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
{{ __('otp.invalid_code') }}
Girl
@endsection @section('scripts') @endsection