@extends('main') @section('css') @endsection @section('content')
@if (Session::get('error_msg'))
{{Session::get('error_msg')}}
@endif @if (Session::get('succ_msg'))
{{Session::get('succ_msg')}}
@endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@include("left_menu")
@if (Session::has('message'))

{{ Session::get('message') }}

@endif

Change Password

@endsection @section('js') @endsection