@extends('layouts.user') {{-- Web site Title --}} @section('title') {{ $title }} @stop @section('styles') @stop {{-- Content --}} @section('content') @include('vendor.flash.message')
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if($pages instanceof Illuminate\Support\Collection)
{!! csrf_field() !!}
pages {{ trans('social.pages') }} @foreach($pages as $page) @endforeach
@elseif(Sentinel::inRole('admin')) {{trans('social.login.admin', ['social' => 'Facebook'])}} @else

{{trans('social.login.byadmin', ['social' => 'Facebook'])}}

@endif
@stop @section('scripts') @stop