@extends('backend.template.layouts.template-base') @section('title', 'Profile') @section('content')

Profile

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Change Password

You can create new password by entering present password.

@endsection @section('scripts') @endsection