@extends('admin.layout.master') @section('content') @if (session()->has('success'))
{{ session()->get('success') }}
@endif @if (session()->has('error'))
{{ session()->get('error') }}
@endif

Update Profile

@csrf
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('confirm_password'))
{{ $errors->first('confirm_password') }}
@endif
Cancel
@endsection