mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
22 lines
No EOL
685 B
PHP
22 lines
No EOL
685 B
PHP
@extends('layouts.account')
|
|
|
|
@section('content')
|
|
|
|
<h2>Delete my account</h2>
|
|
|
|
{!! Form::open(['route' => 'account.destroy', 'method' => 'delete']) !!}
|
|
|
|
<p>You are going to permanently delete your account.</p>
|
|
<p>Please enter your username <b>{{ $account->identifier }}</b> to confirm.</p>
|
|
|
|
<div class="form-group">
|
|
{!! Form::label('identifier', 'Username') !!}
|
|
{!! Form::text('identifier', old('identifier'), ['class' => 'form-control', 'placeholder' => 'username@server.com', 'required']) !!}
|
|
</div>
|
|
|
|
{!! Form::hidden('identifier_confirm', $account->identifier) !!}
|
|
|
|
{!! Form::submit('Delete', ['class' => 'btn btn-danger btn-centered']) !!}
|
|
{!! Form::close() !!}
|
|
|
|
@endsection |