2019-02-03 12:34:15 -05:00
|
|
|
@extends('simple-layout')
|
2015-09-05 15:25:57 -04:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2019-02-03 12:34:15 -05:00
|
|
|
<div class="container very-small mt-xl">
|
|
|
|
<div class="card content-wrap auto-height">
|
|
|
|
<h1 class="list-heading">{{ trans('auth.email_not_confirmed') }}</h1>
|
|
|
|
|
|
|
|
<p>{{ trans('auth.email_not_confirmed_text') }}<br>
|
|
|
|
{{ trans('auth.email_not_confirmed_click_link') }}
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
{{ trans('auth.email_not_confirmed_resend') }}
|
|
|
|
</p>
|
2017-08-26 12:17:04 -04:00
|
|
|
|
2019-08-04 09:26:39 -04:00
|
|
|
<form action="{{ url("/register/confirm/resend") }}" method="POST" class="stretch-inputs">
|
2019-02-03 12:34:15 -05:00
|
|
|
{!! csrf_field() !!}
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email">{{ trans('auth.email') }}</label>
|
|
|
|
@if(auth()->check())
|
2019-04-07 07:00:09 -04:00
|
|
|
@include('form.text', ['name' => 'email', 'model' => auth()->user()])
|
2019-02-03 12:34:15 -05:00
|
|
|
@else
|
2019-04-07 07:00:09 -04:00
|
|
|
@include('form.text', ['name' => 'email'])
|
2019-02-03 12:34:15 -05:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
<div class="form-group text-right mt-m">
|
2019-08-25 07:40:04 -04:00
|
|
|
<button type="submit" class="button">{{ trans('auth.email_not_confirmed_resend_button') }}</button>
|
2019-02-03 12:34:15 -05:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
2015-09-05 15:25:57 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|