@extends('layouts.account') @section('title') {{ trans('user::auth.register') }} | @parent @stop @section('content')

{{ trans('user::auth.register') }}

@include('partials.notifications') {!! Form::open(['route' => 'register.post']) !!}
{!! $errors->first('email', ':message') !!}
{!! $errors->first('password', ':message') !!}
{!! $errors->first('password_confirmation', ':message') !!}
{!! Form::close() !!} {{ trans('user::auth.I already have a membership') }}
@stop