{{Form::horizontal(['route' => 'session-store', 'secure' => true])}}

{{trans('website.messages.registrated-customer')}}

{{trans('website.messages.billing-information-login-message')}}

{{Form::label('email', trans('website.fields.email').":")}}
{{Form::text('email')}}
{{$errors->user->first('email', '
:message
')}}
{{Form::label('password', trans('website.fields.password').":")}}
{{Form::password('password')}}
{{$errors->user->first('password', '
:message
')}}
{{Button::accept(trans('website.buttons.sign-in'))->appendIcon(Icon::triangle_right())->submit()}}
{{Form::close()}}