From 06dc357524c04687f638796fd8f3e04091d52eaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Jaussoin?= Date: Mon, 5 Jan 2026 09:11:06 +0100 Subject: [PATCH] Fix FLEXIAPI-427 Add missing file --- .../views/admin/account/file/delete.blade.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 flexiapi/resources/views/admin/account/file/delete.blade.php diff --git a/flexiapi/resources/views/admin/account/file/delete.blade.php b/flexiapi/resources/views/admin/account/file/delete.blade.php new file mode 100644 index 0000000..96db3ba --- /dev/null +++ b/flexiapi/resources/views/admin/account/file/delete.blade.php @@ -0,0 +1,30 @@ +@extends('layouts.main') + +@section('breadcrumb') + @include('admin.parts.breadcrumb.accounts.show', ['account' => $account]) + + +@endsection + +@section('content') +

{{ __('Delete') }}

+ +
+ @csrf + @method('delete') + +
+

{{ __('You are going to permanently delete the following element. Please confirm your action.') }}

+

{{ $file->id }}

+
+ + + +
+ +
+
+@endsection