@extends('layouts.core.login') @section('title', trans('messages.password_reset')) @section('content')
{{ csrf_field() }}
@if (session('status'))
{{ session('status') }}
@endif
{{ trans('messages.password_reset') }}
@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
{{ trans('messages.reset_password') }}
{{ trans("messages.return_to_login") }}
@endsection