@extends('layouts.guest') @section('title', trans('auth.register')) @section('content')
{!! appLogoImage(['style' => 'width:150px']) !!}

{{ Option::get('app_name','Aplikasi Laravel') }}


{!! Form::open(['route' => 'app.install', 'class' => '']) !!}

Silakan isi formulir di bawah ini untuk membuat akun Administrator dan Agensi.

{!! FormField::text('agency_name', ['required' => true, 'label' => trans('agency.name')]) !!}
{!! FormField::text('agency_website', ['required' => true, 'label' => trans('agency.website')]) !!}
{!! FormField::text('name', ['required' => true, 'label' => trans('user.name')]) !!}
{!! FormField::email('email', ['required' => true, 'label' => trans('auth.email')]) !!}
{!! FormField::password('password', ['required' => true, 'label' => trans('auth.password')]) !!}
{!! FormField::password('password_confirmation', ['required' => true, 'label' => trans('auth.password_confirmation')]) !!}
{!! Form::submit(trans('auth.register'), ['class' => 'btn btn-success']) !!} {!! link_to_route('auth.login', trans('auth.have_an_account'), [], ['class' => 'btn btn-link pull-right']) !!}
{!! Form::close() !!}
@endsection