@extends('layouts.auth2') @section('title') {{ __('messages.reset_password') }} @endsection @section('content')
@include('layouts.errors') @if (Session::has('status')) @endif

{{__('messages.common.forgot_password').' ?'}}

@csrf
@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
{{ __('messages.common.cancel') }}
@endsection @push('scripts') @endpush