@extends('layout.simpleapp') @section('content')
picture

{{__('Create New Password')}}

{{__('you can now make your new password')}}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (Session::has('error'))
  • {{ Session::get('error') }}
@endif @if (Session::has('status'))
  • {{ Session::get('status') }}
@endif @csrf
@endsection @section('script') @endsection