@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') }}

@foreach($socialDrivers as $driver => $enabled) @icon($driver, ['width' => 56])   @endforeach @endif
@stop