{{-- resources/views/points/shared_password.blade.php --}} @extends('layouts.base') @section('title', __('Protected waypoint')) @section('content')

{{ __('This waypoint is protected by a password') }}

{{ __('The owner has protected this waypoint with a password. Please enter it to continue.') }}

@if(session('ok'))
{{ session('ok') }}
@endif @if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf

{{ __('If you did not receive a password, please contact the person who shared this waypoint with you.') }}

@endsection