@extends('themes.default1.client.layout.logclient') @section('home') class = "active" @stop @section('HeadInclude') {{-- --}} @stop @section('breadcrumb')
@stop @section('content') @if(Session::has('status'))
{!! Lang::get('lang.success') !!} {{Session::get('status')}}
@endif @if (count($errors) > 0)
{!! Lang::get('lang.alert') !!} ! @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif
    @if(Auth::user()) @else {!! Lang::get('lang.login') !!} @endif first(); ?> @if($system != null) @if($system->status) @if($system->status == 1) {!! Lang::get('lang.submit_a_ticket') !!} @endif @endif @endif {!! Lang::get('lang.my_tickets') !!} {!! Lang::get('lang.knowledge_base') !!}

    {{Lang::get('lang.registration')}}

    {!! Form::open(['action'=>'Auth\AuthController@postRegister', 'method'=>'post']) !!}
    {!! Form::text('full_name',null,['placeholder'=>Lang::get('lang.full_name'),'class' => 'form-control']) !!}
    @if (($email_mandatory->status == 1 || $email_mandatory->status == '1'))
    {!! Form::text('email',null,['placeholder'=>Lang::get('lang.email'),'class' => 'form-control']) !!}
    @elseif (($settings->status == 0 || $settings->status == '0') && ($email_mandatory->status == 0 || $email_mandatory->status == '0'))
    {!! Form::text('email',null,['placeholder'=>Lang::get('lang.email'),'class' => 'form-control']) !!}
    @else {!! Form::hidden('email', null) !!} @endif @if($settings->status == '1' || $settings->status == 1)
    {!! Form::text('code',null,['placeholder'=>91,'class' => 'form-control']) !!}
    {!! Form::text('mobile',null,['placeholder'=>Lang::get('lang.mobile'),'class' => 'form-control']) !!}
    @else {!! Form::hidden('mobile', null) !!} {!! Form::hidden('code', null) !!} @endif
    {!! Form::password('password',['placeholder'=>Lang::get('lang.password'),'class' => 'form-control']) !!}
    {!! Form::password('password_confirmation',['placeholder'=>Lang::get('lang.retype_password'),'class' => 'form-control']) !!}
    {!! Form::close()!!} @stop