@extends('layouts.layout-inner') @section('content')

{{ isset($pageTitle) ? $pageTitle : 'Reset Password' }}

@if ($resetCount == 0)

Sorry, link expired

@endif @if ($resetCount > 0)

Set password for {{ $email }},

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
× Success! {{ Session::get('success') }}
@endif @if(Session::has('error'))
× Warning! {{ Session::get('error') }}
@endif
{!! csrf_field() !!}
@include('frontend.partials.errormessages')
@include('frontend.partials.errormessages') Password not matching.
@endif @endsection