@section('page_content')
@csrf
Fill in Form Details
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('collection_id')) {{ $errors->first('collection_id') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('layout_id')) {{ $errors->first('layout_id') }} @endif
@if ($errors->has('grid')) {{ $errors->first('grid') }} @endif
@stop