@extends('front.layout') @section('main')
@if (session('status')) @component('front.components.alert') @slot('type') success @endslot

{{ session('status') }}

@endcomponent @endif

@lang('Reset Password')

{{ csrf_field() }} @if ($errors->has('email')) @component('front.components.error') {{ $errors->first('email') }} @endcomponent @endif @if ($errors->has('password')) @component('front.components.error') {{ $errors->first('password') }} @endcomponent @endif
@endsection