@extends('layouts.auth') @section('subheading')

{{ __('Already have an account?') }} {{ __('Sign In') }}

@endsection @section('content')
@csrf
{{ __('Welcome') }} {{ $user->name }}!

{{ __('Before you can start using our site, we ask you to protect your account with a password that you can choose yourself. Please use this password the next time you login, together with your email address.') }}
{{ __('Please protect your account with a password of minimal 8 characters') }}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection