mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
28 lines
No EOL
640 B
PHP
28 lines
No EOL
640 B
PHP
@extends('layouts.account')
|
|
|
|
@section('breadcrumb')
|
|
<li class="breadcrumb-item" aria-current="page">
|
|
<a href="{{ route('account.device.index') }}">Devices</a>
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page">Delete</li>
|
|
@endsection
|
|
|
|
@section('content')
|
|
|
|
<h2>Device deletion</h2>
|
|
|
|
<p>Are you sure you want to delete the following device?</p>
|
|
<p>
|
|
<b>User Agent:</b> {{ $device->user_agent }}
|
|
</p>
|
|
|
|
|
|
{!! Form::open(['route' => 'account.device.destroy', 'method' => 'delete']) !!}
|
|
|
|
{!! Form::hidden('uuid', $device->uuid) !!}
|
|
|
|
{!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!}
|
|
{!! Form::close() !!}
|
|
|
|
|
|
@endsection |