@extends('layouts.appLogin') @section('content') @php $app = \App\AdminSetting::select('bg_img', 'black_logo')->first(); @endphp {{ __('Owner Verification.') }} @csrf @if (Session::has('alert')) {{ Session::get('alert') }} @endif @if ($verify->user_verify_sms == 1) {{ __('Phone OTP') }} @endif @if ($verify->user_verify_email == 1) {{ __('Email OTP') }} @endif @if ($errors->any()) {{ __($errors->first()) }} @endif @if (Session::has('success')) {{ Session::get('success') }} @endif {{ __('Verify') }} {{ __('Back To Register.') }} {{ __('Back') }} @endsection