commit 08-2025

This commit is contained in:
Kevin Adametz 2025-08-12 15:51:04 +02:00
parent 9b54eb0512
commit 02f2a4c23e
184 changed files with 31653 additions and 22327 deletions

View file

@ -45,7 +45,7 @@
font-size: 1.1em;
}
</style>
{!! Form::open(['url' => route('user_profile_image_upload'), 'class' => 'avatar px-2', 'enctype' => 'multipart/form-data']) !!}
{!! Form::open(['action' => route('user_profile_image_upload'), 'class' => 'avatar px-2', 'enctype' => 'multipart/form-data']) !!}
<div class="slim_holder text-center">
<div class="slim" style="margin:0 auto;"
data-label='<span class="text-green">Foto-Upload</span><br>(Datei suchen oder Drag & Drop)'
@ -64,7 +64,7 @@
@endif
</div>
<div class="form-group col-md-8">
{!! Form::open(['url' => route('user_profile'), 'class' => 'form-horizontal']) !!}
{!! Form::open(['action' => route('user_profile'), 'class' => 'form-horizontal']) !!}
<input type="hidden" name="user_id" id="user_id" value="@if ($user->id > 0){{ $user->id }}@else new @endif">
<label class="form-label" for="about_you">Kurzer Text über Dich (max. 600 Zeichen)</label>
{{ Form::textarea('about_you', $user->account->about_you, ['placeholder' => __('Über dich'), 'class' => 'form-control bootstrap-maxlength text-autosize', 'maxlength' => 600, 'rows' => 1, 'id' => 'about_you']) }}