@extends('layouts.app') @section('content')
{{ __('Zmień hasło') }}
{{ __('Proszę zmień hasło przed kontynuowaniem') }} @if(count($errors) > 0) @foreach($errors->all() as $error)
{{ $error }}
@endforeach @endif {!! Form::open(['class' => 'mt-4', 'action' => 'Auth\ResetPasswordController@store', 'method' => 'post']) !!}
{{ Form::label("password", "Nowe hasło") }} {{ Form::input("password", 'password', "", ['class'=>'form-control', 'placeholder' => 'Hasło']) }}
{{ Form::label("passwordConfirm", "Powtórz hasło") }} {{ Form::input("password", "password_confirmation", '', ['class'=>'form-control', 'placeholder' => 'Powtórz hasło']) }}
{{ Form::submit('Zmień hasło', ['class' => 'btn btn-success']) }} {!! Form::close() !!}
@endsection