@extends('admin.layout') @section('title', 'Edit Profile') @section('content')

Edit Profile

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

Change Password

Leave blank if you don't want to change your password

Minimum 8 characters

Cancel
@endsection