@extends('layouts.app', [ 'class' => 'bg-default', 'title' => trans('account.sign_up', [ 'site' => setting('website_name') ]) ]) @section('content') @include('layouts.headers.guest')

{{ __('account.sign_up', [ 'site' => setting('website_name') ]) }}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if (setting('enable_privacy_policy') OR setting('enable_terms_of_use'))
@if ($errors->has('signUpCheck')) {{ __('account.agreement_error') }} @endif
@endif
@endsection @push('js') @endpush