@extends('layouts.app') @section('content')
{{ csrf_field() }}
User Avatar
Photo has been uploaded.
Upload Failed. {{-- --}} Retry {{-- --}}

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

{{Auth::user()->email}} {{Auth::user()->getRoleNames()[0]}}
  • Description {{auth()->user()->description}}
User Details
  • @if(Session::has('update-success'))
    {{Session::get('update-success')}}
    @endif
    {{csrf_field()}}
    @if($errors->has('name')) ** {{ $errors->first('name') }} @endif
    @if($errors->has('email')) ** {{ $errors->first('email') }} @endif
    {{--
    @if($errors->has('description')) ** {{ $errors->first('description') }} @endif
    --}}

  • User Avatar
    Change Password
    @if(Session::has('success'))
    {{Session::get('success')}}
    @endif
    {{csrf_field()}}
    @if($errors->has('old_password')) ** {{ $errors->first('old_password') }} @endif
    @if($errors->has('confirm_password'))
    ** {{ $errors->first('confirm_password') }}
    @endif
    @if($errors->has('confirm_password'))
    ** {{ $errors->first('confirm_password') }}
    @endif
@endsection