@extends("app") @section('head_title', 'Change Password | '.getcong('site_name') ) @section('head_url', Request::url()) @section("content")
@include("_particles.sidebar_user")
@if(count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
{!! Form::open(array('url' => 'update_password','class'=>'','name'=>'pass_form','id'=>'pass_form','role'=>'form')) !!}

Change Password

{!! Form::close() !!}
@endsection