@extends('backend.layouts.app')
@section('breadcrumb')
{!! link_to_route('admin.dashboard', __('Home')) !!}
{!! link_to_route('admin.albums.index', __('Albums')) !!}
@endsection
@section('content')
{!! Form::open(['route' => 'admin.albums.store', 'files' => true]) !!}
@include('backend.forms.album')
{!! Form::close() !!}
@include('backend.forms.imagecrop')
@endsection