@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Profile')) @section('content_header')

{{__('Profile')}} / {{__('Settings')}}

@stop @section('css') @stop @section('js') @if (session()->has('success')) @elseif(session()->has('error')) @endif @stop @section('content') @if (!is_null($profile))

{{ __('Deleting your profile is an irreversible operation. You will not be able to recover any previously entered information.') }}

{{ __('After you delete your profile, the following will happen:') }}

{{ __('If you change your mind and want your profile back, you will be able to create a new blank profile from your profile configuration page, restoring access to the features mentioned above.') }}

{{ __('Are you sure you want to delete your profile?') }}

@csrf @method('DELETE') {{ __('Yes, delete my profile') }}
@if($profile->avatarPreference == 'gravatar') {{ __('User profile picture') }} @else {{ __('User profile picture') }} @endif

{{Auth::user()->name}}

{{$profile->profileShortBio}}

@method('PATCH') @csrf

{{__('Basic Information')}}

{{__('Markdown supported')}}

{{__('Preferences & Media')}}

@else

{{ __("Your account currently has no profile on file. This means that your account will not be visibile in the public profile Directory, and you will not be able to access your profile until you create one.") }}

{{ __("There are many benefits to creating a profile! For instance, you'll be able to set a profile picture, as well as sharing your social media and anything else you'd like. Creating a profile is instant and you can begin configuring it right away. If you later change your mind, you may also delete your profile at any time.") }}

@csrf {{ __('Create profile') }}
@endif @stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop