@extends('layouts.auth_layout') @section('title') {{ __('messages.reset_password') }} @endsection @section('meta_content') - {{ __('messages.reset_password') }} @endsection @section('page_css') @endsection @section('content')
@if(Session::has('error'))
{{Session::get('error')}}
@endif @if(Session::has('success'))
{{Session::get('success')}}
@endif
{{ csrf_field() }}

{{ __('messages.reset_password') }}

{{ __('messages.enter_email_and_new_password') }}

@
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection