@extends('front.layouts.master') @section('content') {{ __('front.login_register') }} {{ __('front.login') }} {{ __('front.register') }} @csrf {{ __('front.first_name') }} * @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif {{ __('front.last_name') }} * @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif {{ __('front.email_address') }} * @if ($errors->has('email')) {{ $errors->first('email') }} @endif {{ __('front.phone') }} * @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif {{ __('front.company_name') }} * @if ($errors->has('company_name')) {{ $errors->first('company_name') }} @endif {{ __('front.company_address') }} * @if ($errors->has('company_address')) {{ $errors->first('company_address') }} @endif {{ __('front.choose_country') }} @foreach ($countries as $country) {{ $country->name }} @endforeach {{ __('front.countries') }} * @if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif {{ __('front.password') }} * @if ($errors->has('password')) {{ $errors->first('password') }} @endif {{ __('front.password_confirmation') }} * @if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif {!! trans('front.i_agree_to', [ 'membership_contract' => '' . __('front.membership_contract') . '', 'pdpl' => '' . __('front.pdpl') . '' ]) !!} {{ __('front.personal_data_usage') }} {{ __('front.you_must_agree') }} {{ __('front.register') }} @endsection @push('javascript') @endpush
{{ __('front.personal_data_usage') }}