{{-- * LaraClassified - Geo Classified Ads CMS * Copyright (c) Mayeul Akpovi. All Rights Reserved * * Email: mayeul.a@larapen.com * Website: http://larapen.com * * LICENSE * ------- * This software is furnished under a license and may be used and copied * only in accordance with the terms of such license and with the inclusion * of the above copyright notice. If you Purchased from Codecanyon, * Please read the full License from here - http://codecanyon.net/licenses/standard --}} @extends('classified.layouts.master') @section('content')
@if (isset($errors) and count($errors) > 0)
Oops ! An error has occurred. Please correct the red fields in the form
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (Session::has('flash_notification.message'))
@include('flash::message')
@endif

{{ t('Create your account, Its free') }}

{!! csrf_field() !!}
@foreach ($userTypes as $type) @endforeach

{{ t('At least 5 characters') }}

@if (config('settings.activation_recaptcha'))
{!! Recaptcha::render(['lang' => $lang->get('abbr')]) !!}
@endif

{{ t('Post a Free Classified') }}

{{ t('Do you have something to sell, to rent, any service to offer or a job offer? Post it at :app_name, its free, local, easy, reliable and super fast!', ['app_name' => getDomain()]) }}

{{ t('Create and Manage Items') }}

{{ t('Become a best seller or buyer. Create and Manage your ads. Repost your old ads, etc.') }}

{{ t('Create your Favorite ads list.') }}

{{ t('Create your Favorite ads list, and save your searchs. Don\'t forget any deal!') }}

@endsection @section('javascript') @parent