@extends('backend.layout.master') @include('backend.profile.css') @section('content')
{{--
Biographic Details

{{ $user->name }}

Email: {{$user->email}}

Change Password

--}}
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Password & Security
{{--
--}}
@endsection @include('backend.profile.js')