@extends('layouts.simple') @section('content')
 

{{ Str::title(trans('auth.sign_up')) }}

@include('auth.parts.register-message')
{!! 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)
@foreach($socialDrivers as $driver => $name)
@icon('auth/' . $driver) {{ trans('auth.sign_up_with', ['socialDriver' => $name]) }}
@endforeach @endif
@stop