flexisip-account-manager/flexiapi/resources/views/account/authenticate_email.blade.php
2020-09-14 11:24:59 +02:00

9 lines
No EOL
220 B
PHP

@extends('layouts.main')
@section('content')
@if (Auth::check())
@include('parts.already_auth')
@else
<p>A unique authentication link was sent by email to {{ $account->email }}</p>
@endif
@endsection