Файл: resources/views/tutorial/10.blade.php
Строк: 31
<?php
@extends('layouts.main')
@section('content')
<div class="box">
<center>
<h4 class="text-center name-user">Введите код подтверждения</h4><br>
<form action="{{ route('tutorial10.confirm') }}" method="post">
{{ csrf_field() }}
<input type="text" class="form-control vvod input-lg" id="exampleInputPassword1" name="token" required><br>
<input type="submit" class="btn btn-games2 btn-block" value="Подтвердить">
</form>
<center>
<font color="white">
@if($cache == 0 || $cache < time())
<a href="/tutorial/10/send">Отправить письмо повторно</a>
@elseif($cache != 0 && $cache > time())
Следующая отправка письма доступна через {{ Services::timer($cache-time()) }}.
@endif
</font>
</center>
</center>
</div>
<img class="img-responsive" src="/images/foot.jpg" alt="foot-i">
@endsection
?>