@extends('public') @section('header-buttons') {{ trans('auth.log_in') }} @stop @section('content')

{{ title_case(trans('auth.sign_up')) }}

{!! csrf_field() !!}
@include('form/text', ['name' => 'name'])
@include('form/text', ['name' => 'email'])
@include('form/password', ['name' => 'password', 'placeholder' => trans('auth.password_hint')])
@if(count($socialDrivers) > 0)

{{ trans('auth.social_registration') }}

{{ trans('auth.social_registration_text') }}

@if(isset($socialDrivers['google'])) @endif @if(isset($socialDrivers['github'])) @endif @endif
@stop