@extends('mobile.module.layouts.content')
@push('meta')
@endpush
@push('css')
@endpush
@push('js')
@endpush
@section('content')
手机、邮箱认证后可以作为登录名快捷登录
手机认证
{{ $companyInfo->mobile or '' }}
@if($companyInfo->mobile_audit == 0)
未认证
@else
已认证
@endif
邮箱认证
{{ $companyInfo->email or '' }}
@if($companyInfo->email_audit == 0)
未认证
@else
已认证
@endif
修改用户名
{{ $companyInfo->username or '' }}
@endsection
@section('script')
@endsection