flexisip-account-manager/flexiapi/resources/views/account/delete.blade.php
Timothée Jaussoin 93f622b8e7 Small UI adjustments
Add the lindoor base CSS
Update the dependencies
2020-09-14 11:24:59 +02:00

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