@extends('frame') @section('title') blikk :: register @stop @section('css') @stop @section('js') @include('regprofscript') @stop @section('content')

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

{!! Form::open(['id'=>'mb_register_form','name'=>'register']) !!} @if ($errors->any())
{{ trans('auth.register_error') }}
@endif
{{ $errors->first('UserName') }}
{!! Form::label('mb_loginusername',trans('auth.login_username')) !!} {!! Form::text('UserName',null,['id'=>'mb_loginusername']) !!} @if (config('auth.captcha.on'))
{{ $errors->first('captcha') }}
{!! Form::text('captcha',null,['id'=>'mb_captcha','placeholder'=>trans('auth.register_captcha')]) !!} @endif
{{ $errors->first('password') }}
{!! Form::label('mb_loginpass1',trans('auth.login_password')) !!} {!! Form::password('password',['id'=>'mb_loginpass1']) !!} @include('regprof')
{{ $errors->first('Terms') }}
{!! Form::checkbox('Terms','yes',false,['id'=>'mb_terms']) !!}
{!! Form::submit(trans('auth.register_submit'),['id'=>'mb_loginsubmit']) !!} {!! Form::close() !!}
@stop