@extends('auth.layouts') @section('title', trans('auth.active_account')) @section('content') @if (Session::get('successMsg'))
{{Session::get('successMsg')}}
@endif @if($errors->any())
{{$errors->first()}}
@endif
@if(\App\Components\Helpers::systemConfig()['is_active_register'])
{{trans('auth.active_account')}}
{{csrf_field()}}
@else
{{trans('auth.system_maintenance_tip',['email' => \App\Components\Helpers::systemConfig()['webmaster_email']])}}
@endif {{trans('auth.back')}} @if(\App\Components\Helpers::systemConfig()['is_active_register']) @endif
@endsection