@extends('general.layout.app') @section('menu') @include('general.partial.menu',array('home'=>route('main.home'))) @endsection @section('content')
@if(session('flash_success')) @endif @if(session('flash_error')) @endif
alternative

{{trans('navs.frontend.login')}}

{{ Form::open(['route' => 'frontend.auth.login', 'class' => 'form-horizontal']) }}
{{ Form::label('email', trans('validation.attributes.frontend.register-user.email'), ['class' => 'col-md-4 control-label']) }}
{{ Form::input('email', 'email', null, ['class' => 'form-control', 'placeholder' => trans('validation.attributes.frontend.register-user.email')]) }}
{{ Form::label('password', trans('validation.attributes.frontend.register-user.password'), ['class' => 'col-md-4 control-label']) }}
{{ Form::input('password', 'passwordc', null, ['class' => 'form-control', 'placeholder' => trans('validation.attributes.frontend.register-user.password')]) }}
@if($errors->first('email')) @endif
@if(config('master.captcha'))
{!! app('captcha')->display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif
{{ Form::submit(trans('labels.frontend.auth.login_button'), ['class' => 'btn-solid-reg', 'style' => 'margin-right:15px']) }} {{ link_to_route('frontend.auth.password.reset', trans('labels.frontend.passwords.forgot_password')) }}
{{ Form::close() }}
@endsection @section('after-scripts') @endsection