Файл: resources/views/account/delete.blade.php
Строк: 45
<?php
@section('site_title', formatTitle([__('Delete'), config('settings.title')]))
@include('shared.breadcrumbs', ['breadcrumbs' => [
['url' => route('dashboard'), 'title' => __('Home')],
['url' => route('account'), 'title' => __('Account')],
['title' => __('Delete')]
]])
<h1 class="h2 mb-3 d-inline-block">{{ __('Delete') }}</h1>
<div class="card border-0 shadow-sm">
<div class="card-header align-items-center">
<div class="row">
<div class="col"><div class="font-weight-medium py-1">{{ __('Delete') }}</div></div>
</div>
</div>
<div class="card-body">
@include('shared.message')
<div class="alert alert-danger" role="alert">
{{ __('Deleting your account is permanent, and will remove all the data associated with it.') }}
</div>
<form action="{{ route('account.destroy') }}" method="post" enctype="multipart/form-data">
@csrf
<div class="form-group">
<label for="i-current-password">{{ __('Current password') }}</label>
<input type="password" name="current_password" id="i-current-password" class="form-control{{ $errors->has('current_password') ? ' is-invalid' : '' }}">
@if ($errors->has('current_password'))
<span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('current_password') }}</strong>
</span>
@endif
</div>
<button type="submit" name="submit" class="btn btn-danger">{{ __('Delete') }}</button>
</form>
</div>
</div>
?>