@extends('layouts.master') @section('title', 'Reset Password') @section('right-nav') @endsection @section('sidebar') @endsection @section('content')
{{ trans('auth.resetpassword') }}
@if (count($errors) > 0)
{{ trans('strings.whoops') }}! {{ trans('auth.errorencountered') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('status'))
{{ trans('strings.success') }}! {{ trans('auth.emailsent') }}
@endif
{!! csrf_field() !!}
@endsection