@extends('themes.default1.layouts.login') @section('body') @if(Session::has('status'))
{!! Lang::get('lang.success') !!} {{Session::get('status')}}
@endif @if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}!
@endif

{!! Lang::get('lang.reset_password') !!}

{!! $errors->first('email', ':message') !!}
{!! $errors->first('password', ':message') !!}
{!! $errors->first('password_confirmation', ':message') !!}
@stop