@extends('app') @section('content')
@if (count($errors) > 0)
Whoops! There were some problems with your input.

@endif @if(Session::has('subscription_mesg'))
{{ Session::get('subscription_mesg') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif @if(Session::has('success'))
{{ Session::get('success') }}
@endif
LOGIN
@if(\Request::is('client/loginpage'))
@else
@endif
@endsection