@extends('layout.default') @section('head') @endsection @section('content') @if ($errors->any()) @foreach ($errors->all() as $error)

{{ $error }}

@endforeach @endif {{ html()->form('DELETE', route('managed_bookmarks.destroy', $setting->id))->open() }} {{ html()->hidden('id', $setting->id)->forgetAttribute('id') }} {{ html()->submit('削除')->attribute('onclick', 'return check();') }} {{ html()->form()->close() }}
設定名 {{ $setting->name }}
@if($bookmarks)
@foreach ($bookmarks as $b) @endforeach
ブックマーク
ブックマーク名 URL フォルダ名
{{$b->Title}} {{$b->URL}} {{$b->Folder}}
@endif @stop @section('script') @stop