@extends('layouts.layout-2') @section('content') @if($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('navigation.my_profile') }}

Über Dich
@if ($user->hasProfileImage()) @else {!! Form::open(['action' => route('user_profile_image_upload'), 'class' => 'avatar px-2', 'enctype' => 'multipart/form-data']) !!}
{!! Form::close() !!} @endif
{!! Form::open(['action' => route('user_profile'), 'class' => 'form-horizontal']) !!} {{ 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']) }} {!! Form::close() !!}
@endsection