mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
13 lines
No EOL
540 B
PHP
13 lines
No EOL
540 B
PHP
@extends('layouts.main', ['welcome' => true])
|
|
|
|
@section('content')
|
|
<div class="card mt-3">
|
|
<div class="card-body">
|
|
{!! Form::open(['route' => 'account.creation_request_token.validate']) !!}
|
|
{!! Form::hidden('account_creation_request_token', $account_creation_request_token->token) !!}
|
|
@include('parts.captcha')
|
|
{!! Form::submit('I\'m not a robot', ['class' => 'btn btn-primary btn-centered']) !!}
|
|
{!! Form::close() !!}
|
|
</div>
|
|
</div>
|
|
@endsection |