@extends('themes.default1.layouts.login')
@section('body')
Hello
@if (Session::has('name'))
{{ Session::get('name')}}
@endif!
{!!Lang::get('lang.verify-screen-msg')!!}
{{ $show_number }}
Wait we are sending a new OTP code to your number.
{!! Lang::get('lang.alert') !!}!
@if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}!
@if(Session::has('error'))
{!! Session::get('error') !!}
@else
{!! Lang::get('lang.please_fill_all_required_feilds') !!}
@endif
@endif
@if(Session::has('fails'))
{!! Lang::get('lang.alert') !!}!
{!! Session::get('fails') !!}
@endif
{!! Form::open(['route'=> 'otp-verification', 'method'=>'post']) !!}
{!! Form::hidden('email',null,['placeholder'=> Lang::get("lang.email") ,'class' => 'form-control']) !!}
{!! Form::hidden('password',['placeholder'=>Lang::get("lang.password"),'class' => 'form-control']) !!}
{!! Form::input('text','otp',null,['placeholder'=> Lang::get("lang.enter-otp") ,'class' => 'form-control' , 'required' => true, 'pattern' => "[0-9]{6}", "title" => Lang::get('lang.otp-input-title')]) !!}
@if (Session::has('referer'))
@elseif(Session::has('errors'))
@endif
@stop