@extends('layouts.app') @section('formulario','Cambiar Password') @section('content')

Cambiar Password

@if (Session::has('success'))
{!! Session::get('success') !!}
@endif @if (Session::has('failure'))
{!! Session::get('failure') !!}
@endif
{{csrf_field()}}
@if ($errors->has('old')) {{ $errors->first('old') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection