@extends('public') @section('content')

 

{{ trans('auth.email_not_confirmed') }}

{{ trans('auth.email_not_confirmed_text') }}
{{ trans('auth.email_not_confirmed_click_link') }}
{{ trans('auth.email_not_confirmed_resend') }}


{!! csrf_field() !!}
@if(auth()->check()) @include('form/text', ['name' => 'email', 'model' => auth()->user()]) @else @include('form/text', ['name' => 'email']) @endif
@stop