@extends('frame') @section('title') blikk :: {{ trans('auth.reset') }} @stop @section('css') @stop @section('js') @stop @section('content')

{{ trans('auth.reset') }} @if ($isadmin)
{{ trans('auth.reset_foruser',['username'=>$user->Name]) }} @endif

{!! Form::open(['id'=>'mb_login_form','name'=>'reset','url'=>LaravelLocalization::getLocalizedURL(null,'reset')]) !!} {!! Form::label('mb_loginpass1',trans('auth.reset_newpw')) !!} {!! Form::password('password',['id'=>'mb_loginpass1']) !!} {!! Form::label('mb_loginpass2',trans('auth.reset_repeatpw')) !!} {!! Form::password('pass2',['id'=>'mb_loginpass2']) !!} {!! Form::hidden('token',$token) !!} {!! Form::label('pwd-container',trans('auth.register_howgood')) !!}
{!! Form::submit(trans('auth.reset_submit'),['id'=>'mb_loginsubmit']) !!} @if ($errors->any()) @include('errors.reset') @endif {!! Form::close() !!}
@stop