{{\App::setLocale(Session::get('locale'))}} @extends('layouts.auth') @section('title', trans('Register')) @section('content')
@php if(isset($_GET['ref'])){ $params = explode("|", $_GET['ref']); } else{ $params=[]; } @endphp
{{ __('Register') }}
@includeIf('components.error-success-message')
{{ csrf_field() }}
@if($errors->has('name')) {{ $errors->first('name') }} @endif
@if($errors->has('ic_no')) {{ $errors->first('ic_no') }} @endif
@if($errors->has('email')) {{ $errors->first('email') }} @endif
@if($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if($errors->has('ref_code')) {{ $errors->first('ref_code') }} @endif
@if($errors->has('password')) {{ $errors->first('password') }} @endif
@if($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@if($errors->has('captcha')) {{ $errors->first('captcha') }} @endif
@endsection @section('extra-script') @includeIf('user.common.sweetalert') @endsection