@extends('layouts.app') @section('title') @endsection @section('content')
Validate OTP
@if (Session::has('mobile'))
OTP has been send your Mobile No : +91{{ Session::get('mobile') }}
@endif Back

@if (Session::has('otperror'))
{{ Session::get('otperror') }}
@endif @if (Session::has('otpsend'))
{{ Session::get('otpsend') }}
@endif
@csrf
@error('otp')
{{ $message }}
@enderror
@endsection