@extends('common.user.layout.auth') @section('styles') @parent @stop @section('content') @php $email_active=""; $sms_active=""; $admin_active=""; if(Helper::getSettings()->site->send_email==1){ $email_active="active"; }else if(Helper::getSettings()->site->send_sms == 1){ $sms_active="active"; }else{ $admin_active="active"; } @endphp @if(Helper::getSettings()->site->send_email == 1) @lang('auth.email_id') @endif @if(Helper::getSettings()->site->send_sms == 1) @lang('auth.mobile_number') @endif @if(Helper::getSettings()->site->send_sms == 0 && Helper::getSettings()->site->send_email==0) @lang('auth.contact_admin') @if(isset(Helper::getSettings()->site->contact_number)){{ Helper::getSettings()->site->contact_number[0]->number}}@endif @endif @lang('auth.continue') @lang('auth.back_to_login') @lang('auth.continue') @lang('auth.back_to_login') @stop @section('scripts') @parent