@extends('adminlte::page') @section('title', 'Profile') @section('content_header') @stop @section('content')

Profile

{{ $data['name'] }}

Edit Profile
@if (Session::has('error'))

{{ session()->get('error') }}

@endif @if (session()->has('success'))

{{ session()->get('success') }}

@endif @if (Session::has('password_change_error'))

{{ session()->get('password_change_error') }}

@endif @if (session()->has('password_change_success'))

{{ session()->get('password_change_success') }}

@endif
@csrf

Edit Profile


@csrf

@stop @section('js') @stop