@extends('auth.layouts.master') @section('title', __('Email Verification')) @section('content')

{{ __('Verify your email address') }}

{!! __('Your email address (:mail) has not been verified yet! In order to start using your account, you need to confirm your email address first.', ['mail' => ''. $email .'' ]) !!}

{{ __("If you did not receive the email, click the button to resend.") }}

@csrf
{{ __("For account security, we required to verified your email address.") }}

{{ __("If you registered with wrong email address, update it now.") }}

@csrf @error('email') {{ $errors->first('email') }} @enderror
@endsection