@extends('layouts.app') @section('head') @endsection @section('template_title') Регистрация @endsection @section('content')

Регистрация

@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('company')) {{ $errors->first('company') }} @endif
@if ($errors->has('tel')) {{ $errors->first('tel') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if(config('settings.reCaptchStatus'))
@endif

Нажимая "Регистрация", вы принимаете Пользовательское соглашение и даете согласие на обработку персональных данных

@endsection @section('footer_scripts') @if(config('settings.reCaptchStatus')) @endif @endsection