@extends('website.layouts.master') @section('head') {{ $title ?? get_platform_title() }} @stop @section('css') {{-- --}} @stop @section('script.title') @stop @section('content')
@if (count($errors) > 0)
{{ trans('theme.error') }}! {{ trans('messages.input_error') }}

@endif

{{ trans('theme.account_login') }}

{!! Form::open(['route' => 'customer.login.submit', 'id' => 'form', 'data-toggle' => 'validator']) !!}
{!! Form::email('email', null, ['class' => 'form-control input-lg', 'placeholder' => trans('theme.placeholder.email'), 'required']) !!}
{!! Form::password('password', ['class' => 'form-control input-lg', 'id' => 'password', 'placeholder' => trans('theme.placeholder.password'), 'data-minlength' => '6', 'required']) !!}
{!! Form::submit(trans('theme.button.login'), ['class' => 'btn btn-block btn-flat btn-primary']) !!}
{!! Form::close() !!} @if (config('system_settings.social_auth')) @endif {{ trans('theme.forgot_password') }} {{ trans('theme.register_here') }}
@if (config('services.recaptcha.key')) @include('theme::scripts.recaptcha') @endif @stop @section('script')
busy...
@stop