@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($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')}}

@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop