36 lines
969 B
PHP
Executable file
36 lines
969 B
PHP
Executable file
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
|
|
@if ($errors->any())
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
<style>
|
|
|
|
</style>
|
|
|
|
|
|
<div class="card-body" style="background: #fff; border: 1px solid rgba(24, 28, 33, 0.06);">
|
|
<p>{{ $text }}</p>
|
|
</div>
|
|
|
|
{{--
|
|
<div class="card-body" style="background: #fff; border: 1px solid rgba(24, 28, 33, 0.06);">
|
|
<h4>{{__('Delete') }}</h4>
|
|
<p>{{__('If you no longer want to use our offer, you can delete your account here.')}}</p>
|
|
<a href="{{route('user_delete_account')}}" class="btn btn-default">{{__('Delete Account')}}</a>
|
|
</div>
|
|
--}}
|
|
|
|
|
|
@endsection
|