@extends('admin.layouts.app') @section('title','Change Password') @section('section')

Change Password Form

@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
{!! session('success') !!}
@endif
@csrf
@endsection