@extends('themes.base.layout') @section('title', trans('admin.delete_album', ['name' => $album->name])) @section('breadcrumb') @endsection @section('content')

@yield('title')

@lang('admin.delete_album_confirm', ['name' => $album->name])

@lang('admin.delete_album_warning')
{!! Form::open(['route' => ['albums.destroy', $album->id], 'method' => 'DELETE']) !!} @lang('forms.cancel_action') {!! Form::submit(trans('forms.delete_action'), ['class' => 'btn btn-danger']) !!} {!! Form::close() !!}
@endsection