@extends('template.coin.layouts.auth-base') @section('title', __('Verify Email')) @section('content')
@csrf
English

Verify your email with {{system_settings('site_name')}}

Your email is not verified. Please check your email for verification Link.

@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif @if ($errors->has('inactive'))

{{ $errors->first('inactive') }}

@endif @if ($errors->has('disabled'))

{{ $errors->first('disabled') }}

@endif @if(Session::has('reg_msg'))

{{ Session::get('reg_msg') }}

@endif
@endsection