3 @section('header-buttons')
4 <a href="{{ baseUrl("/login") }}"><i class="zmdi zmdi-sign-in"></i>{{ trans('auth.log_in') }}</a>
9 <div class="text-center">
10 <div class="center-box">
11 <h1>{{ title_case(trans('auth.sign_up')) }}</h1>
13 <form action="{{ baseUrl("/register") }}" method="POST">
16 <div class="form-group">
17 <label for="email">{{ trans('auth.name') }}</label>
18 @include('form/text', ['name' => 'name'])
21 <div class="form-group">
22 <label for="email">{{ trans('auth.email') }}</label>
23 @include('form/text', ['name' => 'email'])
26 <div class="form-group">
27 <label for="password">{{ trans('auth.password') }}</label>
28 @include('form/password', ['name' => 'password', 'placeholder' => trans('auth.password_hint')])
31 <div class="from-group">
32 <button class="button block pos">{{ trans('auth.create_account') }}</button>
36 @if(count($socialDrivers) > 0)
37 <hr class="margin-top">
38 <h3 class="text-muted">{{ trans('auth.social_registration') }}</h3>
39 <p class="text-small">{{ trans('auth.social_registration_text') }}</p>
40 @if(isset($socialDrivers['google']))
41 <a href="{{ baseUrl("/register/service/google") }}" style="color: #DC4E41;"><i class="zmdi zmdi-google-plus-box zmdi-hc-4x"></i></a>
43 @if(isset($socialDrivers['github']))
44 <a href="{{ baseUrl("/register/service/github") }}" style="color:#444;"><i class="zmdi zmdi-github zmdi-hc-4x"></i></a>