@extends('admin.layout.master') @section('css') @stop @section('body')
{!! csrf_field() !!}
@if ($errors->has('about')) {{ $errors->first('about') }} @endif

{{--
Video Thumbnail
...
Select image Change Remove
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
--}}
{{--
Video link
@if ($errors->has('about_video'))
{{ $errors->first('about_video') }}
@endif
--}}
...
Select image Change Remove
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif

@if ($about_blocks->count() > 0)

Blocks:


@foreach($about_blocks as $block)

{!! $block->title !!}

{!! $block->content !!}

Edit Delete
@endforeach
@endif @stop @section('script') @stop