@extends('layouts.app', [ 'class' => '', 'elementActive' => 'profile' ]) @section('content')
@if (session('status')) @endif @if (session('password_status')) @endif
...
...
{{ __(auth()->user()->name)}}

@ {{ __(auth()->user()->name)}}

{{ __('I like the way you work it') }}
{{ __('No diggity') }}
{{ __('I wanna bag it up') }}

{{ __('Team Members') }}

  • Circle Image
    {{ __('DJ Khaled') }}
    {{ __('Offline') }}
  • Circle Image
    {{ __('Creative Tim') }}
    {{ __('Available') }}
  • Circle Image
    {{ __('Flume') }}
    {{ __('Busy') }}
@csrf @method('PUT')
{{ __('Edit Profile') }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@csrf @method('PUT')
{{ __('Change Password') }}
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection