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

{{ trans('auth.reset') }}

@if ($feedback === false) {!! Form::open(['id'=>'mb_login_form','name'=>'reset']) !!} @if ($errors->any())
{{ trans('auth.reset_error') }}
@endif {!! Form::label('mb_loginusername',trans('auth.login_username')) !!} {!! Form::text('UserName',null,['id'=>'mb_loginusername']) !!}

{{ trans('auth.or') }}

{!! Form::label('mb_loginemail',trans('auth.register_email')) !!} {!! Form::text('EMail',null,['id'=>'mb_loginemail']) !!} {!! Form::submit(trans('auth.reset_get'),['id'=>'mb_loginsubmit']) !!} @if ($errors->any()) @include('errors.reset') @endif {!! Form::close() !!} @elseif ($feedback === true) @endif
@stop