mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
30 lines
1 KiB
PHP
30 lines
1 KiB
PHP
@extends('layouts.main')
|
|
|
|
@section('breadcrumb')
|
|
@include('admin.account.parts.breadcrumb_accounts_index')
|
|
@include('admin.account.parts.breadcrumb_accounts_edit', ['account' => $account])
|
|
<li class="breadcrumb-item active">
|
|
{{ __('Contacts') }}
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page">{{ __('Delete') }}</li>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<h2>{{ __('Delete') }}</h2>
|
|
|
|
<form method="POST" action="{{ route('admin.account.contact.destroy', [$account]) }}" accept-charset="UTF-8">
|
|
@csrf
|
|
@method('delete')
|
|
|
|
<div>
|
|
<p>You are going to remove the following contact from the contact list. Please confirm your action.</p>
|
|
<p><b>{{ $contact->identifier }}</b></p>
|
|
</div>
|
|
|
|
<input name="account_id" type="hidden" value="{{ $account->id }}">
|
|
<input name="contact_id" type="hidden" value="{{ $contact->id }}">
|
|
<div>
|
|
<input class="btn" type="submit" value="{{ __('Delete') }}">
|
|
</div>
|
|
</form>
|
|
@endsection
|