cms-token/@core/resources/views/frontend/user/email-verify.blade.php

46 lines
2.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('frontend.frontend-page-master')
@section('page-title')
{{__('Verify Your Account')}}
@endsection
@section('content')
<section class="login-page-wrapper">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="login-form-wrapper">
<h2>{{__('Verify Your Account')}}</h2>
@include('backend.partials.message')
<div class="alert alert-warning alert-block">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>{{ __('Check Mail for Verification code.') }}</strong>
</div>
@if($errors->any())
<div class="alert alert-danger">
<ul>
@foreach($errors->all() as $error)
<li>{{$error}}</li>
@endforeach
</ul>
</div>
@endif
<form action="{{route('user.email.verify')}}" method="post" enctype="multipart/form-data" class="account-form verify-mail">
@csrf
<div class="form-group">
<input type="text" name="verification_code" class="form-control" placeholder="{{__('Verify Code')}}">
</div>
<div class="form-group btn-wrapper">
<button type="submit" class="submit-btn">{{__('Verify Email')}}</button>
</div>
<div class="row mb-4 rmber-area">
<div class="col-12 text-center">
<a href="{{route('user.resend.verify.mail')}}">{{__('Send Verify Code Again?')}}</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
@endsection