@extends('admin.masters.base') @section('pagetitle') Photos overview @stop @section('crumbs')
  • Albums
  • {{ ucwords($album->album_name) }}
  • @stop @section('pagecontents')
    20% Complete

    Photos Panel

    {!! Form::open (['class' => 'pull-right', 'id' => 'photoForm', 'files' => true]) !!} {!! Form::close() !!}
    @if ($photolist == '')
    Album list is currently empty.
    @else
    @foreach($photolist as $a)
    @endforeach
    @endif
    @stop @section('scripts') @stop