@extends('layouts.front') @section('title') @lang('Verify your phone number') - {{config('app.name')}} @endsection @section('meta-tags') @endsection @section('meta-tags-og') @endsection @section('styles') @include('partials.phone_style') @endsection @section('sidebar') @include('includes.user-account-sidebar') @endsection @section('above_content') @endsection @section('content')
@if(session('success'))
{{ session('success') }}
@endif

@lang('Verify your phone number')


@if($user->mobile && !$user->mobile->verified)
@lang('Please verify your phone number:') {{$user->mobile->number}} {!! Form::open(['method'=>'post', 'action'=>'SendVerificationSMS@sendOtp', 'id'=>'send-otp-form']) !!}
{!! Form::submit(__('Click here to send verification code to your phone.'), ['class'=>'btn-primary btn-link', 'name'=>'submit_button', 'id'=>'send-otp-btn']) !!}
{{ Form::close() }}
@endif
@endsection @section('scripts') @include('partials.phone_script') @endsection