mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-18 05:08:27 +00:00
15 lines
No EOL
429 B
PHP
15 lines
No EOL
429 B
PHP
@extends('layouts.main')
|
|
|
|
<h2>Delete an account</h2>
|
|
|
|
{!! Form::open(['route' => 'admin.account.destroy', 'method' => 'delete']) !!}
|
|
|
|
<p>You are going to permanently delete the following account. Please confirm your action.</p>
|
|
<p><b>{{ $account->identifier }}</b></p>
|
|
|
|
{!! Form::hidden('account_id', $account->id) !!}
|
|
|
|
{!! Form::submit('Delete', ['class' => 'btn btn-danger btn-centered']) !!}
|
|
{!! Form::close() !!}
|
|
|
|
@endsection |