{!! Form::label('id', 'Id:') !!}

{!! $album->id !!}

{!! Form::label('date', 'Date:') !!}

{!! $album->date !!}

{!! Form::label('name', 'Name:') !!}

{!! $album->name !!}

{!! Form::label('description', 'Description:') !!}

{!! $album->description !!}

{!! Form::label('image', 'Image:') !!}

{!! $album->image !!}

{!! Form::label('created_at', 'Created At:') !!}

{!! $album->created_at !!}

{!! Form::label('updated_at', 'Updated At:') !!}

{!! $album->updated_at !!}