@extends ('layouts.default') @section ('content')
@if (Session::has('error'))
{{{ Session::get('error') }}}
@endif
@include('xero.partials._header')
{!! csrf_field() !!}
Register
@if ($errors->has('email')) {!! $errors->first('email', ':message') !!} @endif
@if ($errors->has('password')) {!! $errors->first('password', ':message') !!} @endif
@if ($errors->has('consumer_key')) {!! $errors->first('consumer_key', ':message') !!} @endif
@if ($errors->has('consumer_secret')) {!! $errors->first('consumer_secret', ':message') !!} @endif
@stop