@extends('simple-layout') @section('content')
 

{{ Str::title(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)
@foreach($socialDrivers as $driver => $name)
@icon('auth/' . $driver) {{ trans('auth.sign_up_with', ['socialDriver' => $name]) }}
@endforeach @endif @if($samlEnabled)
@icon('saml2') {{ trans('auth.log_in_with', ['socialDriver' => config('saml2.name')]) }}
@endif
@stop