@extends('layouts.client_template') @section('content')

Change Password

{{ csrf_field() }}
@foreach(['danger','warning','success','info'] as $msg) @if(Session::has('alert-'.$msg))

{{ Session::get('alert-'.$msg) }} ×

@endif @endforeach
@if ($errors->has('currentpass')) {{ $errors->first('currentpass') }} @endif
@if ($errors->has('newpass')) {{ $errors->first('newpass') }} @endif
@if ($errors->has('newpass_confirmation')) {{ $errors->first('newpass_confirmation') }} @endif
@endsection