@if(Session::has('error'))
{!! Session::get('error') !!}
@endif
@if ($errors->has('old_password'))
{{ $errors->first('old_password') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if(Session::has('success'))
{!! Session::get('success') !!}
@endif